We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 08c9193 + f4f476d commit 5499f10Copy full SHA for 5499f10
docs/grammar.md
@@ -239,6 +239,9 @@ Each item is one of:
239
* `item ~ n` - Exactly *n* instances of item
240
* `item ~ n..m` - Between *n* to *m* instances of item (not recommended for wide ranges, due to performance issues)
241
242
+Note that all operators, including `~ n`, apply directly to the item on their left.
243
+For instance `a ~ 2 b ~ 3` is parsed as `(a ~ 2) (b ~ 3)`.
244
+
245
**Examples:**
246
```perl
247
hello_world: "hello" "world"
0 commit comments