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 /doc/cljlib.md | |
| parent | 01e7345d815b1f7296504429c2b5b50fabd118d1 (diff) | |
fix: fix cons docstring
Diffstat (limited to 'doc/cljlib.md')
| -rw-r--r-- | doc/cljlib.md | 2 |
1 files changed, 1 insertions, 1 deletions
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: |