aboutsummaryrefslogtreecommitdiff
path: root/docs/tables.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-05 00:22:40 -0500
committerBruce Hill <bruce@bruce-hill.com>2025-03-05 00:22:40 -0500
commitdba2d62d15d8233c189a109f97d7cda70fa7f6b7 (patch)
treee30d17414553a45f006a6a5d6f05dcd2856ee386 /docs/tables.md
parent0a3ad8ba914ab42ebbb88a3d955f71d71d581fc1 (diff)
Fix links
Diffstat (limited to 'docs/tables.md')
-rw-r--r--docs/tables.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/tables.md b/docs/tables.md
index bb57a972..d24c719d 100644
--- a/docs/tables.md
+++ b/docs/tables.md
@@ -133,12 +133,12 @@ iterating over any of the new values.
## Table Methods
-- [`func bump(t:@{K,V}, key: K, amount: Int = 1 -> Void)`](#`bump)
-- [`func clear(t:@{K,V})`](#`clear)
-- [`func get(t:{K,V}, key: K -> V?)`](#`get)
-- [`func has(t:{K,V}, key: K -> Bool)`](#`has)
-- [`func remove(t:{K,V}, key: K -> Void)`](#`remove)
-- [`func set(t:{K,V}, key: K, value: V -> Void)`](#`set)
+- [`func bump(t:@{K,V}, key: K, amount: Int = 1 -> Void)`](#bump)
+- [`func clear(t:@{K,V})`](#clear)
+- [`func get(t:{K,V}, key: K -> V?)`](#get)
+- [`func has(t:{K,V}, key: K -> Bool)`](#has)
+- [`func remove(t:{K,V}, key: K -> Void)`](#remove)
+- [`func set(t:{K,V}, key: K, value: V -> Void)`](#set)
### `bump`