summaryrefslogtreecommitdiff
path: root/docs/index.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-06-08 11:38:20 -0400
committernodist <kevin.comas.git@gmail.com>2026-06-08 11:38:20 -0400
commitfd774948e6ac3506c24e6b87b6ef98403aa85951 (patch)
tree8335f5d44694e357a08715c75d05de3964ba2434 /docs/index.md
parentceb874e83d44a2c3d7c7d167fc8853694538ae53 (diff)
add action and remove assigment from namespace
Diffstat (limited to 'docs/index.md')
-rw-r--r--docs/index.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/index.md b/docs/index.md
index d298e04..08e02d1 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -28,10 +28,10 @@ This specification not only describes the language syntax but it's implementatio
// Do Soemthing
readFile("filename", callback(data))
// Continue while readFile is running
-// langauge equivalent
+// --- langauge equivalent
// Do Soemthing
Fn[name; callback] $ (
- ( read; open ) : `use "io"
+ ( read; open ) `use "io"
callback `sync read `sync open `sync name
) `async ("filename"; callback)
// Continue while readFile is running