summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cljlib.fnl2
-rw-r--r--doc/cljlib.md2
2 files changed, 2 insertions, 2 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 []))
diff --git a/doc/cljlib.md b/doc/cljlib.md
index 623fc38..a81ebf6 100644
--- a/doc/cljlib.md
+++ b/doc/cljlib.md
@@ -695,7 +695,7 @@ Function signature:
(cons [x tbl])
```
-Insert `x` to `tbl` at the front. Modifies `tbl`.
+Insert `x` to `tbl` at the front. Calls [`seq`](#seq) on `tbl`.
## `concat`
Function signature: