diff --git a/docs/index.html b/docs/index.html index 3f30107..34b322e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1101,14 +1101,14 @@ time as 37815000000 ticks and 4 days. 4 days becuase:
a < b
operation.true
if date value of a is later
+ true
if date value of a is smaller/older
than date value of b. a > b
is equivalent to
b < a
.a <= b
operation.true
if date value of a is later
+ true
if date value of a is smaller/older
than or equal to the date value of b. a >= b
is equivalent to b <= a
.a - b
operation.a
to
- date and time value of b
.b
from
+ date and time value of a
.a + b
operation.a
to date and
- time value of b
.b
to date and
+ time value of a
.a
and b
must be a
parsable date value or an error rises
@@ -1162,7 +1162,7 @@ assert(a == b and (not(a ~= b)))
assert((a .. 565369) == (b .. 565369))
assert((a .. "????") == (b .. "????"))
-
+