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 3a47088 commit 2974b6bCopy full SHA for 2974b6b
README.md
@@ -10,7 +10,11 @@ Example:
10
// This step doesn't do the actual patching!
11
12
let patchedJSONContent: PatchedJSON = Content(fileURL: someJSONFileURL) {
13
+
14
Add(address: "/users/-", jsonContent: "alex")
15
+ Add(address: "/users/-", jsonContent: [1, "hi", 5.0])
16
+ // note: please use `null` and never `nil` to mean JSON's `null`
17
+ Add(address: "/users/-", jsonContent: null)
18
19
Remove(address: "/temp/log")
20
0 commit comments