summaryrefslogtreecommitdiffstats
path: root/docs/content/3.manual
diff options
context:
space:
mode:
authorStephen Dolan <mu@netsoc.tcd.ie>2012-12-28 14:21:28 +0000
committerStephen Dolan <mu@netsoc.tcd.ie>2012-12-28 14:23:28 +0000
commit9302b16247eb124c23cc7cf091822afc503105d3 (patch)
tree539c8e634e4579b926e59633b4c40f3ce0e4227c /docs/content/3.manual
parent89e26969ae5bc7a259c1bd150f4d58c67800424b (diff)
Docs typos.
Diffstat (limited to 'docs/content/3.manual')
-rw-r--r--docs/content/3.manual/manual.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/content/3.manual/manual.yml b/docs/content/3.manual/manual.yml
index 55f43a00..fd91ef13 100644
--- a/docs/content/3.manual/manual.yml
+++ b/docs/content/3.manual/manual.yml
@@ -748,8 +748,8 @@ sections:
means that you'll sometimes have to be more explicit about
the condition you want: you can't test whether, e.g. a
string is empty using `if .name then A else B end`, you'll
- need something more like 'if (.name | count) > 0 then A else
- B end' instead.
+ need something more like `if (.name | count) > 0 then A else
+ B end` instead.
If the condition A produces multiple results, it is
considered "true" if any of those results is not false or
@@ -872,8 +872,8 @@ sections:
For instance, calculating the average value of an array of numbers
requires a few variables in most languages - at least one to hold the
array, perhaps one for each element or for a loop counter. In jq, it's
- simply `add / length` - the `sum` expression is given the array and
- produces its sum, and the `count` expression is given the array and
+ simply `add / length` - the `add` expression is given the array and
+ produces its sum, and the `length` expression is given the array and
produces its length.
So, there's generally a cleaner way to solve most problems in jq that