]> granicus.if.org Git - jq/commitdiff
Update docs/content/3.manual/manual.yml 119/head
author13ren <melbourne.research@gmail.com>
Sun, 13 Jan 2013 06:33:01 +0000 (17:33 +1100)
committer13ren <melbourne.research@gmail.com>
Sun, 13 Jan 2013 06:33:01 +0000 (17:33 +1100)
There's a , after map ; should be .
#65

docs/content/3.manual/manual.yml

index de6082105ac25dc42513374c79c16edbbd84c369..3d856546e0234f287338b7ec90cd9361568d8eea 100644 (file)
@@ -995,7 +995,7 @@ sections:
           If you want the value-argument behaviour for defining simple
           functions, you can just use a variable:
 
-              def addvalue(f): f as $value | map(, + $value);
+              def addvalue(f): f as $value | map(. + $value);
 
           With that definition, `addvalue(.foo)` will add the current
           input's `.foo` field to each element of the array.