You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/quickstart.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Quick Start
2
2
3
-
This page gets you started using JSONPath wih Python, see [JSONPath Syntax](syntax.md) for information on JSONPath selector syntax.
3
+
This page gets you started using JSONPath, JSON Pointer and JSON Patch wih Python, see [JSONPath Syntax](syntax.md) for information on JSONPath selector syntax.
4
4
5
5
## `findall(path, data)`
6
6
@@ -238,7 +238,7 @@ Apply a JSON Patch ([RFC 6902](https://datatracker.ietf.org/doc/html/rfc6902)) t
238
238
239
239
_patch_ can be a string or file-like object containing a valid JSON Patch document, or an iterable of dictionaries.
240
240
241
-
_data_ is the target JSON document to modify. It can be a file-like object or string containing JSON formatted data, or equivalent Python objects.**_data_ is modified in-place**.
241
+
_data_ is the target JSON document to modify. If _data_ is a string or file-like object, it will be loaded with _json.loads_. Otherwise _data_ should be a JSON-like data structure and will be**modified inplace**.
0 commit comments