aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/block.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/block.md b/doc/block.md
index 63aa6545..50bbb154 100644
--- a/doc/block.md
+++ b/doc/block.md
@@ -180,9 +180,9 @@ If no header is compatible, the call results in an error.
A special rule allows for convenient case-matching syntax for one-argument functions. In any function header with one argument, the function name can be omitted as long as the argument is *not* a plain identifier—it must be `𝕩` or a compound value like a list to distinguish it from an immediate block label.
Test ← {
- "abc": "string"
- ⟨2,b⟩: ⌽𝕩
- 5: "number"
+ "abc": "string" ;
+ ⟨2,b⟩: ⌽𝕩 ;
+ 5: "number" ;
𝕩: "default"
}