summaryrefslogtreecommitdiff
path: root/docs/type_system/fn.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-06-04 17:22:25 -0400
committernodist <kevin.comas.git@gmail.com>2026-06-04 17:22:25 -0400
commit1d5f5dd3cd5cc07352379fe33930770e3d203f3a (patch)
tree9a92bdf7a34b99065d8f67f296b86743d34b2b84 /docs/type_system/fn.md
parenta8810a00d95678cceee2a063df9c094fa6f6037d (diff)
use await and more application definitions
Diffstat (limited to 'docs/type_system/fn.md')
-rw-r--r--docs/type_system/fn.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/type_system/fn.md b/docs/type_system/fn.md
index b004560..66a350e 100644
--- a/docs/type_system/fn.md
+++ b/docs/type_system/fn.md
@@ -91,15 +91,15 @@ Asynchronous call
```text
task : `async fn
-value : `wait task
+value : `await task
```
## \`sync
Synchronous call
-If the callee is a process, an inline wait with async is used
+If the callee is a process, an inline await with async is used
```text
-fn `sync args // can be turned into `wait fn `async args
+fn `sync args // can be turned into `await fn `async args
```