summaryrefslogtreecommitdiffstats
path: root/docs/content
diff options
context:
space:
mode:
author13ren <melbourne.research@gmail.com>2013-01-13 17:33:01 +1100
committer13ren <melbourne.research@gmail.com>2013-01-13 17:33:01 +1100
commitd0cd26cd8e110e9c2a68e56dac4c208851ec24e8 (patch)
treeb4f464fc6933f6411b073d25036481c210cb0b9c /docs/content
parent925ec3751f3b407c17412b0fa04a84fe39c1e0b7 (diff)
Update docs/content/3.manual/manual.yml
There's a , after map ; should be . #65
Diffstat (limited to 'docs/content')
-rw-r--r--docs/content/3.manual/manual.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/3.manual/manual.yml b/docs/content/3.manual/manual.yml
index de608210..3d856546 100644
--- a/docs/content/3.manual/manual.yml
+++ b/docs/content/3.manual/manual.yml
@@ -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.