From 568ea40dc3ec8befc59c80e47c43c3d09b514a53 Mon Sep 17 00:00:00 2001 From: Emanuele Torre Date: Mon, 11 Dec 2023 12:28:47 +0100 Subject: [PATCH] update man page --- jq.1.prebuilt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jq.1.prebuilt b/jq.1.prebuilt index bb3a4b3447..24939de28c 100644 --- a/jq.1.prebuilt +++ b/jq.1.prebuilt @@ -1,5 +1,5 @@ . -.TH "JQ" "1" "November 2023" "" "" +.TH "JQ" "1" "December 2023" "" "" . .SH "NAME" \fBjq\fR \- Command\-line JSON processor @@ -2586,7 +2586,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 \fBnull\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\. 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\.