Merge branch 'prototype/Swift_4_0' into prototype/queryBuilders

This commit is contained in:
John Rommel Estropia
2017-08-31 23:50:12 +09:00
5 changed files with 15 additions and 15 deletions

View File

@@ -1722,7 +1722,7 @@ These special properties' values can be accessed or mutated using `.value`:
```swift
CoreStore.perform(
asynchronous: { (transaction) in
let dog: Dog = CoreStore.fetchOne(From<Dog>())!
let dog: Dog = transaction.fetchOne(From<Dog>())!
// ...
let nickname = dog.nickname.value // String?
let species = dog.species.value // String