Skip to content

Commit bc6cdb1

Browse files
committed
[README] Use double quotes for strings
This ain't Python!
1 parent 607bc4f commit bc6cdb1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,18 @@ It provides a type safe structure providing the changes objects.
4242

4343
```swift
4444
context.qk_objectsDidChange().subscribeNext { notification in
45-
print('Objects did change:')
45+
print("Objects did change:")
4646
print(notification.insertedObjects)
4747
print(notification.updatedObjects)
4848
print(notification.deletedObjects)
4949
}
5050

5151
context.qk_willSave().subscribeNext { notification in
52-
print('Context will save')
52+
print("Context will save")
5353
}
5454

5555
context.qk_didSave().subscribeNext { notification in
56-
print('Context did save')
56+
print("Context did save")
5757
}
5858
```
5959

0 commit comments

Comments
 (0)