diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-01-31 15:53:23 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-01-31 15:57:48 +0900 |
| commit | 7712c1d10ec45349c1cd6e66281b7d602350065d (patch) | |
| tree | 92208e7fb1955fd9847d91affa25ec096012ab9b /docs | |
| parent | 617ddc62aa4d3153850362526069b85bfaf5e59e (diff) | |
| download | zgjq-7712c1d10ec45349c1cd6e66281b7d602350065d.tar.gz zgjq-7712c1d10ec45349c1cd6e66281b7d602350065d.tar.zst zgjq-7712c1d10ec45349c1cd6e66281b7d602350065d.zip | |
implement slice expression
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/jq_grammar.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/jq_grammar.md b/docs/jq_grammar.md index d636756..f9850cf 100644 --- a/docs/jq_grammar.md +++ b/docs/jq_grammar.md @@ -89,6 +89,9 @@ term: suffix: '[' query ']' '?'? + '[' query ':' query ']' '?'? + '[' query ':' ']' '?'? + '[' ':' query ']' '?'? primary: 'null' |
