summaryrefslogtreecommitdiff
path: root/doc/cljlib.md
diff options
context:
space:
mode:
authorAndrey Orst <andreyorst@gmail.com>2020-12-04 20:14:34 +0300
committerAndrey Orst <andreyorst@gmail.com>2020-12-04 20:14:34 +0300
commit94075ecec503d761ec89f44f476a41f6556a8c0e (patch)
tree9dde2c82776e39295343d7dbd6114b55be85202b /doc/cljlib.md
parent3c7bb1409d6ef8c6d364f54c61c7e0570a6ff3c9 (diff)
fix(doc): update docs
Diffstat (limited to 'doc/cljlib.md')
-rw-r--r--doc/cljlib.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/cljlib.md b/doc/cljlib.md
index a81ebf6..ee686cf 100644
--- a/doc/cljlib.md
+++ b/doc/cljlib.md
@@ -1130,18 +1130,18 @@ be in the set:
``` fennel
>> (ordered-set)
-###{}
+#{}
>> (ordered-set :a :c :b)
-###{"a" "c" "b"}
+#{"a" "c" "b"}
```
Duplicate items are not added:
``` fennel
>> (ordered-set)
-###{}
+#{}
>> (ordered-set :a :c :a :a :a :a :c :b)
-###{"a" "c" "b"}
+#{"a" "c" "b"}
```
#### Check if set contains desired value:
@@ -1165,7 +1165,7 @@ To add element to the set use [`conj`](#conj) or `tset`
>> (local oset (ordered-set :a :b :c))
>> (conj oset :d :e)
>> oset
-###{"a" "b" "c" "d" "e"}
+#{"a" "b" "c" "d" "e"}
```
##### Remove items from the set:
@@ -1175,10 +1175,10 @@ To add element to the set use [`disj`](#disj) or `tset`
>> (local oset (ordered-set :a :b :c))
>> (disj oset :b)
>> oset
-###{"a" "c"}
+#{"a" "c"}
>> (tset oset :a nil)
>> oset
-###{"c"}
+#{"c"}
```
#### Equality semantics
@@ -1225,5 +1225,5 @@ Copyright (C) 2020 Andrey Orst
License: [MIT](https://gitlab.com/andreyorst/fennel-cljlib/-/raw/master/LICENSE)
-<!-- Generated with Fenneldoc 0.0.5
+<!-- Generated with Fenneldoc 0.0.6
https://gitlab.com/andreyorst/fenneldoc -->