summaryrefslogtreecommitdiffstats
path: root/docs/content/manual/manual.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/manual/manual.yml')
-rw-r--r--docs/content/manual/manual.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/content/manual/manual.yml b/docs/content/manual/manual.yml
index 183e4a5d..ed9a8c3a 100644
--- a/docs/content/manual/manual.yml
+++ b/docs/content/manual/manual.yml
@@ -1148,15 +1148,15 @@ sections:
(except it does not output the empty list, representing .
itself).
- `paths(f)` outputs the paths to any values for which `f` is true.
- That is, `paths(numbers)` outputs the paths to all numeric
+ `paths(f)` outputs the paths to any values for which `f` is `true`.
+ That is, `paths(type == "number")` outputs the paths to all numeric
values.
examples:
- program: '[paths]'
input: '[1,[[],{"a":2}]]'
output: ['[[0],[1],[1,0],[1,1],[1,1,"a"]]']
- - program: '[paths(scalars)]'
+ - program: '[paths(type == "number")]'
input: '[1,[[],{"a":2}]]'
output: ['[[0],[1,1,"a"]]']