summaryrefslogtreecommitdiff
path: root/docs/index.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-06-08 16:17:14 -0400
committernodist <kevin.comas.git@gmail.com>2026-06-08 16:17:14 -0400
commitca458bfcd65c3a094fd0721cb5cd9f74dee5f845 (patch)
tree084de1c6d98fd1cdffe3d0bc47ed5af24e491fb8 /docs/index.md
parent47dfee7481d9f64d0518ea7a408af113cffd84c6 (diff)
remove action from ast
Diffstat (limited to 'docs/index.md')
-rw-r--r--docs/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/index.md b/docs/index.md
index 08e02d1..64071a8 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -31,7 +31,7 @@ readFile("filename", callback(data))
// --- langauge equivalent
// Do Soemthing
Fn[name; callback] $ (
- ( read; open ) `use "io"
+ `use "io" [open; read]
callback `sync read `sync open `sync name
) `async ("filename"; callback)
// Continue while readFile is running