aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/jq_grammar.md
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-02-16 23:16:12 +0900
committernsfisis <nsfisis@gmail.com>2026-02-16 23:16:12 +0900
commitdf5be2f8176f6ad5ff727bf570d6c511d8452609 (patch)
tree8a38a82a301dc43e40b3f71e297f11191dc98e57 /docs/jq_grammar.md
parentc9db46235ed5b8c51935ac105874909400e9ec93 (diff)
downloadzgjq-df5be2f8176f6ad5ff727bf570d6c511d8452609.tar.gz
zgjq-df5be2f8176f6ad5ff727bf570d6c511d8452609.tar.zst
zgjq-df5be2f8176f6ad5ff727bf570d6c511d8452609.zip
implement paren grouping
Diffstat (limited to 'docs/jq_grammar.md')
-rw-r--r--docs/jq_grammar.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/jq_grammar.md b/docs/jq_grammar.md
index 697a062..430e01d 100644
--- a/docs/jq_grammar.md
+++ b/docs/jq_grammar.md
@@ -105,6 +105,7 @@ primary:
'[' ']'
'{' '}'
'[' query ']'
+ '(' query ')'
```