aboutsummaryrefslogtreecommitdiff
path: root/docs/sets.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-10-28 13:53:15 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-10-28 13:53:15 -0400
commit9c302fdc34403f46572d9524309617888ba816bb (patch)
tree58ea7faf390536503de114cf2889ed85ba60df7b /docs/sets.md
parentc632a72486d347e7ef30c0b7890e2045ed42b903 (diff)
parentce2aebe91085f987aab31bd2a49820fb605cf386 (diff)
Merge branch 'main' into internal-textsinternal-texts
Diffstat (limited to 'docs/sets.md')
-rw-r--r--docs/sets.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/sets.md b/docs/sets.md
index bc1b3aca..e9c44b29 100644
--- a/docs/sets.md
+++ b/docs/sets.md
@@ -133,7 +133,7 @@ Adds multiple items to the set.
**Signature:**
```tomo
-func add_all(set:&{T}, items: [T] -> Void)
+func add_all(set:@{T}, items: [T] -> Void)
```
**Parameters:**
@@ -158,7 +158,7 @@ Removes an item from the set.
**Signature:**
```tomo
-func remove(set:&{T}, item: T -> Void)
+func remove(set:@{T}, item: T -> Void)
```
**Parameters:**
@@ -183,7 +183,7 @@ Removes multiple items from the set.
**Signature:**
```tomo
-func remove_all(set:&{T}, items: [T] -> Void)
+func remove_all(set:@{T}, items: [T] -> Void)
```
**Parameters:**
@@ -208,7 +208,7 @@ Removes all items from the set.
**Signature:**
```tomo
-func clear(set:&{T} -> Void)
+func clear(set:@{T} -> Void)
```
**Parameters:**