aboutsummaryrefslogtreecommitdiff
path: root/docs/tables.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-10-27 21:14:27 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-10-27 21:14:27 -0400
commitce2aebe91085f987aab31bd2a49820fb605cf386 (patch)
tree9241858c01f68b4eccd2be88f8e12997c885cf46 /docs/tables.md
parentefb7be5bc4876c3113041848fb6d901a4f3ab4e9 (diff)
Update docs to reflect deprecation of "&" stack references
Diffstat (limited to 'docs/tables.md')
-rw-r--r--docs/tables.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tables.md b/docs/tables.md
index eb727d7e..1de58118 100644
--- a/docs/tables.md
+++ b/docs/tables.md
@@ -118,7 +118,7 @@ not already in the table, its value will be assumed to be zero.
**Signature:**
```tomo
-func bump(t:&{K:V}, key: K, amount: Int = 1 -> Void)
+func bump(t:@{K:V}, key: K, amount: Int = 1 -> Void)
```
**Parameters:**
@@ -148,7 +148,7 @@ Removes all key-value pairs from the table.
**Signature:**
```tomo
-func clear(t:&{K:V})
+func clear(t:@{K:V})
```
**Parameters:**