summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAndrey Orst <andreyorst@gmail.com>2021-01-24 19:28:45 +0300
committerAndrey Orst <andreyorst@gmail.com>2021-01-24 19:36:55 +0300
commit79291f0e4f9c7c4f0a8ebcbe53270c65ad932bfc (patch)
treebfc346328157c2f059dff2c5709b81b6745ff599 /doc
parentb22f270b596881630fb1dbd6a721c1fe6312f00d (diff)
fix: update heading links
Diffstat (limited to 'doc')
-rw-r--r--doc/cljlib.md48
-rw-r--r--doc/macros.md2
2 files changed, 25 insertions, 25 deletions
diff --git a/doc/cljlib.md b/doc/cljlib.md
index 4634fb9..f1e7f5f 100644
--- a/doc/cljlib.md
+++ b/doc/cljlib.md
@@ -60,27 +60,27 @@ non-ASCII strings.
- [`inc`](#inc)
- [`dec`](#dec)
- [`eq`](#eq)
-- [`map?`](#map?)
-- [`vector?`](#vector?)
-- [`multifn?`](#multifn?)
-- [`set?`](#set?)
-- [`nil?`](#nil?)
-- [`zero?`](#zero?)
-- [`pos?`](#pos?)
-- [`neg?`](#neg?)
-- [`even?`](#even?)
-- [`odd?`](#odd?)
-- [`string?`](#string?)
-- [`boolean?`](#boolean?)
-- [`true?`](#true?)
-- [`false?`](#false?)
-- [`int?`](#int?)
-- [`pos-int?`](#pos-int?)
-- [`neg-int?`](#neg-int?)
-- [`double?`](#double?)
-- [`empty?`](#empty?)
+- [`map?`](#map)
+- [`vector?`](#vector)
+- [`multifn?`](#multifn)
+- [`set?`](#set)
+- [`nil?`](#nil)
+- [`zero?`](#zero)
+- [`pos?`](#pos)
+- [`neg?`](#neg)
+- [`even?`](#even)
+- [`odd?`](#odd)
+- [`string?`](#string)
+- [`boolean?`](#boolean)
+- [`true?`](#true)
+- [`false?`](#false)
+- [`int?`](#int)
+- [`pos-int?`](#pos-int)
+- [`neg-int?`](#neg-int)
+- [`double?`](#double)
+- [`empty?`](#empty)
- [`not-empty`](#not-empty)
-- [`vector`](#vector)
+- [`vector`](#vector-1)
- [`seq`](#seq)
- [`kvseq`](#kvseq)
- [`first`](#first)
@@ -96,9 +96,9 @@ non-ASCII strings.
- [`reduce-kv`](#reduce-kv)
- [`mapv`](#mapv)
- [`filter`](#filter)
-- [`every?`](#every?)
+- [`every?`](#every)
- [`some`](#some)
-- [`not-any?`](#not-any?)
+- [`not-any?`](#not-any)
- [`range`](#range)
- [`reverse`](#reverse)
- [`identity`](#identity)
@@ -505,7 +505,7 @@ Function signature:
Constructs sequential table out of it's arguments.
-Sets additional metadata for function [`vector?`](#vector?) to work.
+Sets additional metadata for function `vector?` to work.
### Examples
@@ -613,7 +613,7 @@ Insert `x` as a last element of a table `tbl`.
If `tbl` is a sequential table or empty table, inserts `x` and
optional `xs` as final element in the table.
-If `tbl` is an associative table, that satisfies [`map?`](#map?) test,
+If `tbl` is an associative table, that satisfies `map?` test,
insert `[key value]` pair into the table.
Mutates `tbl`.
diff --git a/doc/macros.md b/doc/macros.md
index f1efa48..7fa717c 100644
--- a/doc/macros.md
+++ b/doc/macros.md
@@ -3,7 +3,7 @@ Macros for Cljlib that implement various facilities from Clojure.
**Table of contents**
-- [`fn*`](#fn*)
+- [`fn*`](#fn)
- [`try`](#try)
- [`def`](#def)
- [`defonce`](#defonce)