aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosef Pospíšil <josef.pospisil@laststar.eu>2023-07-26 11:23:18 +0200
committerChloe Kudryavtsev <code@toast.bunkerlabs.net>2023-07-26 13:10:07 +0200
commit562fcadad4254614096a5586c989358f11351e43 (patch)
tree02fbd12c719e4cf43a7bc128e55c7226ca76caa9
parenttest: test both update-time and its * variant (diff)
Add missing parens
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 1456efc..dae9a59 100644
--- a/README.md
+++ b/README.md
@@ -83,7 +83,7 @@ for native API, please see the test suite and `src/` directory.
(put calendar-now-utc :sec 120) # out of range
(:timegm! calendar-now-utc)
# now in range
-(assert > (:timegm calendar-now-utc) now)
+(assert (> (:timegm calendar-now-utc) now))
# however, it is recommended to work with date/time objects
# you can mutate those using the update-time function suite