summaryrefslogtreecommitdiff
path: root/init.fnl
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 /init.fnl
parentb22f270b596881630fb1dbd6a721c1fe6312f00d (diff)
fix: update heading links
Diffstat (limited to 'init.fnl')
-rw-r--r--init.fnl4
1 files changed, 2 insertions, 2 deletions
diff --git a/init.fnl b/init.fnl
index c7f6fa8..9e2a91a 100644
--- a/init.fnl
+++ b/init.fnl
@@ -378,7 +378,7 @@ Number is rounded with `math.floor` and compared with original number."
(fn* core.vector
"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
@@ -512,7 +512,7 @@ Additionally you can use [`conj`](#conj) and [`apply`](#apply) with
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`.