diff --git a/docs/content/manual/manual.yml b/docs/content/manual/manual.yml index 578517be24..d1e7cd67e7 100644 --- a/docs/content/manual/manual.yml +++ b/docs/content/manual/manual.yml @@ -113,10 +113,11 @@ sections: * `--stream`: - Parse the input in streaming fashion, outputing 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"]`. + Parse the input in depth-first, 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"]`, `[[2,0],"b"]`, + `[[2,0]]` and `[[2]]`. This is useful for processing very large inputs. Use this in conjunction with filtering and the `reduce` and `foreach` syntax