We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 462cf39 + 2ecc44f commit 99f28acCopy full SHA for 99f28ac
doc/tutorial.rst
@@ -16,10 +16,10 @@ method is basically a deep ``get``.
16
>>> resolve_pointer(obj, '/foo') == obj['foo']
17
True
18
19
- >>> resolve_pointer(obj, '/foo/another%20prop') == obj['foo']['another prop']
+ >>> resolve_pointer(obj, '/foo/another prop') == obj['foo']['another prop']
20
21
22
- >>> resolve_pointer(obj, '/foo/another%20prop/baz') == obj['foo']['another prop']['baz']
+ >>> resolve_pointer(obj, '/foo/another prop/baz') == obj['foo']['another prop']['baz']
23
24
25
>>> resolve_pointer(obj, '/foo/anArray/0') == obj['foo']['anArray'][0]
0 commit comments