From 92d35378ff5b52db879ef85f8321e4aae0fca1fb Mon Sep 17 00:00:00 2001 From: "J. B. Rainsberger" Date: Thu, 8 Feb 2024 09:52:50 -0400 Subject: Fix typo in documentation for map_values (#3035) * Fix typo in documentation for map_values "map_value(f)" -> "map_values(f)" * map_value => map_values also in the devolpment manual --------- Co-authored-by: Emanuele Torre --- docs/content/manual/manual.yml | 2 +- docs/content/manual/v1.7/manual.yml | 2 +- jq.1.prebuilt | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/content/manual/manual.yml b/docs/content/manual/manual.yml index ef1d67f8..6d7597bf 100644 --- a/docs/content/manual/manual.yml +++ b/docs/content/manual/manual.yml @@ -1007,7 +1007,7 @@ sections: `($x|f)` for each value, $x, in the input array or object, but `map_values(f)` only uses `first($x|f)`. - Specifically, for object inputs, `map_value(f)` constructs + Specifically, for object inputs, `map_values(f)` constructs the output object by examining in turn the value of `first(.[$k]|f)` for each key, $k, of the input. If this expression produces no values, then the corresponding key diff --git a/docs/content/manual/v1.7/manual.yml b/docs/content/manual/v1.7/manual.yml index 75d4a22a..7852fc3c 100644 --- a/docs/content/manual/v1.7/manual.yml +++ b/docs/content/manual/v1.7/manual.yml @@ -1007,7 +1007,7 @@ sections: `($x|f)` for each value, $x, in the input array or object, but `map_values(f)` only uses `first($x|f)`. - Specifically, for object inputs, `map_value(f)` constructs + Specifically, for object inputs, `map_values(f)` constructs the output object by examining in turn the value of `first(.[$k]|f)` for each key, $k, of the input. If this expression produces no values, then the corresponding key diff --git a/jq.1.prebuilt b/jq.1.prebuilt index 00f35824..f3103fb9 100644 --- a/jq.1.prebuilt +++ b/jq.1.prebuilt @@ -1,5 +1,5 @@ . -.TH "JQ" "1" "January 2024" "" "" +.TH "JQ" "1" "February 2024" "" "" . .SH "NAME" \fBjq\fR \- Command\-line JSON processor @@ -1004,7 +1004,7 @@ When the input to \fBmap_values(f)\fR is an object, the output object has the sa The key difference between \fBmap(f)\fR and \fBmap_values(f)\fR is that the former simply forms an array from all the values of \fB($x|f)\fR for each value, $x, in the input array or object, but \fBmap_values(f)\fR only uses \fBfirst($x|f)\fR\. . .P -Specifically, for object inputs, \fBmap_value(f)\fR constructs the output object by examining in turn the value of \fBfirst(\.[$k]|f)\fR for each key, $k, of the input\. If this expression produces no values, then the corresponding key will be dropped; otherwise, the output object will have that value at the key, $k\. +Specifically, for object inputs, \fBmap_values(f)\fR constructs the output object by examining in turn the value of \fBfirst(\.[$k]|f)\fR for each key, $k, of the input\. If this expression produces no values, then the corresponding key will be dropped; otherwise, the output object will have that value at the key, $k\. . .P Here are some examples to clarify the behavior of \fBmap\fR and \fBmap_values\fR when applied to arrays\. These examples assume the input is \fB[1]\fR in all cases: -- cgit v1.2.3