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.
1 parent 2974b6b commit c87d25aCopy full SHA for c87d25a
README.md
@@ -12,8 +12,10 @@ Example:
12
let patchedJSONContent: PatchedJSON = Content(fileURL: someJSONFileURL) {
13
14
Add(address: "/users/-", jsonContent: "alex")
15
+
16
Add(address: "/users/-", jsonContent: [1, "hi", 5.0])
- // note: please use `null` and never `nil` to mean JSON's `null`
17
18
+ // note: please use `null` (and never `nil`) to represent JSON's `null`
19
Add(address: "/users/-", jsonContent: null)
20
21
Remove(address: "/temp/log")
0 commit comments