summaryrefslogtreecommitdiffstats
path: root/jq.1.prebuilt
diff options
context:
space:
mode:
authorNicolas Williams <nico@cryptonector.com>2023-08-03 23:24:06 -0500
committerNicolas Williams <nico@cryptonector.com>2023-08-03 23:24:12 -0500
commit71941a0d4706fecf641df249c27ec73771bc149c (patch)
treec7d01a748482d24210d74f524ea47f639fc9a342 /jq.1.prebuilt
parentdcaf701ef66dd0a9c27df49959e4eae9c45c73c4 (diff)
Clarify the `//` operator (fix typo)
Diffstat (limited to 'jq.1.prebuilt')
-rw-r--r--jq.1.prebuilt2
1 files changed, 1 insertions, 1 deletions
diff --git a/jq.1.prebuilt b/jq.1.prebuilt
index e6ccd181..b2590acc 100644
--- a/jq.1.prebuilt
+++ b/jq.1.prebuilt
@@ -2577,7 +2577,7 @@ jq \'[true, false | not]\'
.IP "" 0
.
.SS "Alternative operator: //"
-The \fB//\fR operator produces all the values of its left\-hand side that are neither \fBfalse\fR nor \fBnull\fR, or, if the left\-hand side produces no values other than \fBfalse\fR or \fBtrue\fR, then \fB//\fR produces all the values of its right\-hand side\.
+The \fB//\fR operator produces all the values of its left\-hand side that are neither \fBfalse\fR nor \fBnull\fR, or, if the left\-hand side produces no values other than \fBfalse\fR or \fBnull\fR, then \fB//\fR produces all the values of its right\-hand side\.
.
.P
A filter of the form \fBa // b\fR produces all the results of \fBa\fR that are not \fBfalse\fR or \fBnull\fR\. If \fBa\fR produces no results, or no results other than \fBfalse\fR or \fBnull\fR, then \fBa // b\fR produces the results of \fBb\fR\.