diff options
Diffstat (limited to 'doc/cljlib.md')
| -rw-r--r-- | doc/cljlib.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/cljlib.md b/doc/cljlib.md index 53793f2..b42e9f9 100644 --- a/doc/cljlib.md +++ b/doc/cljlib.md @@ -1,4 +1,4 @@ -# Cljlib.fnl(0.1.0) +# Cljlib.fnl (0.1.0) Fennel-cljlib - functions from Clojure's core.clj implemented on top of Fennel. **Table of contents** @@ -973,7 +973,7 @@ Empty tables: Empty tables created with [`vector`](#vector) will pass the test: ``` fennel -(local some-table (hash-map)) +(local some-table (vector)) (assert (vector? some-table)) ``` |