diff options
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 [])) |