From 58f277dad4be72b200380f9127ddf357368f9701 Mon Sep 17 00:00:00 2001 From: Thijs Schreijer Date: Sun, 18 Jul 2021 09:06:54 +0200 Subject: [PATCH] chore(docs) small clarification/correction (#25) fixes #24 --- docs/index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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:
The a < b operation.
-
Returns true if date value of a is later +
Returns true if date value of a is smaller/older than date value of b. a > b is equivalent to b < a.
The a <= b operation.
-
Returns true if date value of a is later +
Returns 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.
@@ -1128,14 +1128,14 @@ time as 37815000000 ticks and 4 days. 4 days becuase:
The a - b operation.
-
Subtract the date and time value of a to - date and time value of b.
+
Subtract the date and time value of b from + date and time value of a.
The a + b operation.
-
Add the date and time value of a to date and - time value of b.
+
Add the date and time value of 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 .. "????")) - +