summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGijs Kunze <gwkunze@gmail.com>2021-12-22 12:15:05 +0100
committerNico Williams <nico@cryptonector.com>2022-05-26 15:45:52 -0500
commit0171a9eb6029fa326b1439b76ddef2f18f0ab2b7 (patch)
treef3312b3368c9a20b4df658518b2f6f9981ece568
parentedacc8f70d771075cf59d05aee0939d854b2ca2f (diff)
fixes incorrect example in man page
-rw-r--r--docs/content/manual/manual.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/manual/manual.yml b/docs/content/manual/manual.yml
index aee1ed47..9f74a6fe 100644
--- a/docs/content/manual/manual.yml
+++ b/docs/content/manual/manual.yml
@@ -116,7 +116,7 @@ sections:
Parse the input in streaming fashion, outputting arrays of path
and leaf values (scalars and empty arrays or empty objects).
For example, `"a"` becomes `[[],"a"]`, and `[[],"a",["b"]]`
- becomes `[[0],[]]`, `[[1],"a"]`, and `[[1,0],"b"]`.
+ becomes `[[0],[]]`, `[[1],"a"]`, and `[[2,0],"b"]`.
This is useful for processing very large inputs. Use this in
conjunction with filtering and the `reduce` and `foreach` syntax