File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ Examples:
5454* ` test1[].test2 ` # "test1" in a root dict must be a list, key "test2" from each dict entry will be yielded
5555* ` test1[].test2[] ` # recursion works
5656* ` [][0] ` # works without dicts
57- * `test[ 1:10:2] # python slicing is supported
57+ * ` test[1:10:2] ` # python slicing is supported
5858* ` test1.* ` # "test1" in a root dict must be a dict, yield each key
5959* ` test1.test* ` # "test1" in a root dict must be a dict, yield each key that starts with "test"
6060* ` test1.*test* ` # "test1" in a root dict must be a dict, yield each key that contains "test"
Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ def iterate(obj: Collection,
261261 * `test1[].test2` # "test1" in a root dict must be a list, key "test2" from each dict entry will be yielded
262262 * `test1[].test2[]` # recursion works
263263 * `[][0]` # works without dicts
264- * `test[1:10:2] # python slicing is supported
264+ * `test[1:10:2]` # python slicing is supported
265265 * `test1.*` # "test1" in a root dict must be a dict, yield each key
266266 * `test1.test*` # "test1" in a root dict must be a dict, yield each key that starts with "test"
267267 * `test1.*test*` # "test1" in a root dict must be a dict, yield each key that contains "test"
You can’t perform that action at this time.
0 commit comments