summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Orst <andreyorst@gmail.com>2020-11-15 16:46:59 +0300
committerAndrey Orst <andreyorst@gmail.com>2020-11-15 16:46:59 +0300
commit62d99cfe898857eaf94f4f408c2d1ae182c706a3 (patch)
tree5b8ff2a65777f765f7815e729404d2ece4dd2d03
parentd8b1692acf1528215408b472d0b6649122860dac (diff)
fix(doc): fix vector? docstring
-rw-r--r--cljlib.fnl2
-rw-r--r--doc/cljlib.md4
2 files changed, 3 insertions, 3 deletions
diff --git a/cljlib.fnl b/cljlib.fnl
index d5c65c5..e953675 100644
--- a/cljlib.fnl
+++ b/cljlib.fnl
@@ -130,7 +130,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))
```"
[tbl]
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))
```