summaryrefslogtreecommitdiff
path: root/cljlib.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'cljlib.fnl')
-rw-r--r--cljlib.fnl2
1 files changed, 1 insertions, 1 deletions
diff --git a/cljlib.fnl b/cljlib.fnl
index e7b5f31..32331e9 100644
--- a/cljlib.fnl
+++ b/cljlib.fnl
@@ -543,7 +543,7 @@ See [`hash-map`](#hash-map) for creating empty associative tables."
(consj (doto tbl (insert 1 x)) (unpack xs)))))
(fn* core.cons
- "Insert `x` to `tbl` at the front. Modifies `tbl`."
+ "Insert `x` to `tbl` at the front. Calls [`seq`](#seq) on `tbl`."
[x tbl]
(if-some [x x]
(doto (or (seq tbl) (empty []))