aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-01-28 22:45:29 +0900
committernsfisis <nsfisis@gmail.com>2026-01-28 22:45:29 +0900
commitfda13fefa083f9cc6489d55d21aab8ca0300e783 (patch)
treee4fcb14d3ed4e59db1fc4efb16801093c6deb31a /docs
parent9ddb831241a150e83fa18d1f681c264118c91fbc (diff)
downloadzgjq-fda13fefa083f9cc6489d55d21aab8ca0300e783.tar.gz
zgjq-fda13fefa083f9cc6489d55d21aab8ca0300e783.tar.zst
zgjq-fda13fefa083f9cc6489d55d21aab8ca0300e783.zip
implement array construction
Diffstat (limited to 'docs')
-rw-r--r--docs/jq_grammar.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/jq_grammar.md b/docs/jq_grammar.md
index a84164c..d636756 100644
--- a/docs/jq_grammar.md
+++ b/docs/jq_grammar.md
@@ -98,6 +98,9 @@ primary:
STRING
'.'
FIELD '?'?
+ '[' ']'
+ '{' '}'
+ '[' query ']'
```