summaryrefslogtreecommitdiff
path: root/cljlib.fnl
diff options
context:
space:
mode:
authorAndrey Orst <andreyorst@gmail.com>2020-11-25 21:57:14 +0300
committerAndrey Orst <andreyorst@gmail.com>2020-11-25 21:57:30 +0300
commit3c7bb1409d6ef8c6d364f54c61c7e0570a6ff3c9 (patch)
tree76a660c8a3569bfb684cc98303f524d5b18e93a6 /cljlib.fnl
parent01e7345d815b1f7296504429c2b5b50fabd118d1 (diff)
fix: fix cons docstring
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 []))