aboutsummaryrefslogtreecommitdiff
path: root/api/threads.md
diff options
context:
space:
mode:
Diffstat (limited to 'api/threads.md')
-rw-r--r--api/threads.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/api/threads.md b/api/threads.md
index b6ae5138..228fc8ac 100644
--- a/api/threads.md
+++ b/api/threads.md
@@ -29,12 +29,12 @@ A new `Thread` object representing the created thread.
>> results := |Int|
>> thread := Thread.new(func():
while yes:
- input := jobs:pop()
- results:push(input + 10
+ input := jobs:get()
+ results:give(input + 10
)
= Thread<0x12345678>
->> jobs:push(10)
->> results:pop()
+>> jobs:give(10)
+>> results:get()
= 11
```