diff options
| author | Andrey Orst <andreyorst@gmail.com> | 2020-11-25 21:57:14 +0300 |
|---|---|---|
| committer | Andrey Orst <andreyorst@gmail.com> | 2020-11-25 21:57:30 +0300 |
| commit | 3c7bb1409d6ef8c6d364f54c61c7e0570a6ff3c9 (patch) | |
| tree | 76a660c8a3569bfb684cc98303f524d5b18e93a6 /cljlib.fnl | |
| parent | 01e7345d815b1f7296504429c2b5b50fabd118d1 (diff) | |
fix: fix cons docstring
Diffstat (limited to 'cljlib.fnl')
| -rw-r--r-- | cljlib.fnl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 [])) |