Skip to content

Commit 488f009

Browse files
committed
docs backtick
1 parent d257954 commit 488f009

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

REFERENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

datapath/_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)