summaryrefslogtreecommitdiff
path: root/docs/language/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/language/index.md')
-rw-r--r--docs/language/index.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/language/index.md b/docs/language/index.md
index 8ef01fd..ee2ea70 100644
--- a/docs/language/index.md
+++ b/docs/language/index.md
@@ -184,7 +184,7 @@ Move loop to next iteration
{ default statements }
}
-? condition {[args] statements }
+? condition {[arg] statements }
```
### Match `#`
@@ -192,7 +192,7 @@ Move loop to next iteration
```text
# match {
target { statements }
- target {[args] statements }
+ target {[arg] statements }
{ default statements }
}
```
@@ -200,5 +200,5 @@ Move loop to next iteration
### Mutation `^`
```test
-^ mutation {[args] statements }
+^ mutation {[arg] statements }
```