summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmanuele Torre <torreemanuele6@gmail.com>2023-07-29 21:57:40 +0200
committerNico Williams <nico@cryptonector.com>2023-07-29 18:27:59 -0500
commita6eb055c47c980bba4ebdc60b026f2311e5a800a (patch)
tree24780d52e52ebc7c724fd8677c608e657868ccbd
parentee2a215f2eb0bde3d4a6cfff1a656dcc684abbb3 (diff)
Fix typo in manual: "-seq" => "--seq"
-rw-r--r--docs/content/manual/manual.yml4
-rw-r--r--docs/content/manual/v1.5/manual.yml4
-rw-r--r--docs/content/manual/v1.6/manual.yml4
-rw-r--r--jq.1.prebuilt2
4 files changed, 7 insertions, 7 deletions
diff --git a/docs/content/manual/manual.yml b/docs/content/manual/manual.yml
index 5479f98b..89252ac2 100644
--- a/docs/content/manual/manual.yml
+++ b/docs/content/manual/manual.yml
@@ -3262,8 +3262,8 @@ sections:
Streaming forms include `[<path>, <leaf-value>]` (to indicate any
scalar value, empty array, or empty object), and `[<path>]` (to
indicate the end of an array or object). Future versions of jq
- run with `--stream` and `-seq` may output additional forms such as
- `["error message"]` when an input text fails to parse.
+ run with `--stream` and `--seq` may output additional forms such
+ as `["error message"]` when an input text fails to parse.
entries:
- title: "`truncate_stream(stream_expression)`"
diff --git a/docs/content/manual/v1.5/manual.yml b/docs/content/manual/v1.5/manual.yml
index cd5ad4ea..be2f1c56 100644
--- a/docs/content/manual/v1.5/manual.yml
+++ b/docs/content/manual/v1.5/manual.yml
@@ -2627,8 +2627,8 @@ sections:
Streaming forms include `[<path>, <leaf-value>]` (to indicate any
scalar value, empty array, or empty object), and `[<path>]` (to
indicate the end of an array or object). Future versions of jq
- run with `--stream` and `-seq` may output additional forms such as
- `["error message"]` when an input text fails to parse.
+ run with `--stream` and `--seq` may output additional forms such
+ as `["error message"]` when an input text fails to parse.
entries:
- title: "`truncate_stream(stream_expression)`"
diff --git a/docs/content/manual/v1.6/manual.yml b/docs/content/manual/v1.6/manual.yml
index 00ae468b..be62cab6 100644
--- a/docs/content/manual/v1.6/manual.yml
+++ b/docs/content/manual/v1.6/manual.yml
@@ -3002,8 +3002,8 @@ sections:
Streaming forms include `[<path>, <leaf-value>]` (to indicate any
scalar value, empty array, or empty object), and `[<path>]` (to
indicate the end of an array or object). Future versions of jq
- run with `--stream` and `-seq` may output additional forms such as
- `["error message"]` when an input text fails to parse.
+ run with `--stream` and `--seq` may output additional forms such
+ as `["error message"]` when an input text fails to parse.
entries:
- title: "`truncate_stream(stream_expression)`"
diff --git a/jq.1.prebuilt b/jq.1.prebuilt
index 4273110c..de3dfa34 100644
--- a/jq.1.prebuilt
+++ b/jq.1.prebuilt
@@ -3680,7 +3680,7 @@ Several builtins are provided to make handling streams easier\.
The examples below use the streamed form of \fB[0,[1]]\fR, which is \fB[[0],0],[[1,0],1],[[1,0]],[[1]]\fR\.
.
.P
-Streaming forms include \fB[<path>, <leaf\-value>]\fR (to indicate any scalar value, empty array, or empty object), and \fB[<path>]\fR (to indicate the end of an array or object)\. Future versions of jq run with \fB\-\-stream\fR and \fB\-seq\fR may output additional forms such as \fB["error message"]\fR when an input text fails to parse\.
+Streaming forms include \fB[<path>, <leaf\-value>]\fR (to indicate any scalar value, empty array, or empty object), and \fB[<path>]\fR (to indicate the end of an array or object)\. Future versions of jq run with \fB\-\-stream\fR and \fB\-\-seq\fR may output additional forms such as \fB["error message"]\fR when an input text fails to parse\.
.
.SS "truncate_stream(stream_expression)"
Consumes a number as input and truncates the corresponding number of path elements from the left of the outputs of the given streaming expression\.