We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 607bc4f commit bc6cdb1Copy full SHA for bc6cdb1
README.md
@@ -42,18 +42,18 @@ It provides a type safe structure providing the changes objects.
42
43
```swift
44
context.qk_objectsDidChange().subscribeNext { notification in
45
- print('Objects did change:')
+ print("Objects did change:")
46
print(notification.insertedObjects)
47
print(notification.updatedObjects)
48
print(notification.deletedObjects)
49
}
50
51
context.qk_willSave().subscribeNext { notification in
52
- print('Context will save')
+ print("Context will save")
53
54
55
context.qk_didSave().subscribeNext { notification in
56
- print('Context did save')
+ print("Context did save")
57
58
```
59
0 commit comments