mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
all: replace "NB:" with "Note:" (docs/comments)
This commit is contained in:
@@ -6,7 +6,7 @@ fn test_time_after_2038_works() {
|
||||
error_time := after_time.add_days(180)
|
||||
dump(error_time)
|
||||
assert error_time.str() == '2038-01-19 00:00:00'
|
||||
// NB: the next date is after Y2K38, it should NOT wrap:
|
||||
// Note: the next date is after Y2K38, it should NOT wrap:
|
||||
error_time2 := after_time.add_days(181)
|
||||
dump(error_time2)
|
||||
assert error_time2.str() == '2038-01-20 00:00:00'
|
||||
|
||||
Reference in New Issue
Block a user