WIP: documentation

This commit is contained in:
John Rommel Estropia
2015-09-10 07:21:53 +09:00
parent 6a006d5d7c
commit 63a43a6487
9 changed files with 279 additions and 69 deletions

View File

@@ -36,7 +36,7 @@ let person = transaction.create(Into(MyPersonEntity))
For cases where multiple `NSPersistentStore`s contain the same entity, the destination configuration's name needs to be specified as well:
let person = transaction.create(Into<MyPersonEntity>("Configuration1"))
let person = transaction.create(Into<MyPersonEntity>("Configuration1"))
This helps the `NSManagedObjectContext` to determine which
*/
@@ -48,7 +48,7 @@ public struct Into<T: NSManagedObject> {
Initializes an `Into` clause.
Sample Usage:
let person = transaction.create(Into<MyPersonEntity>())
let person = transaction.create(Into<MyPersonEntity>())
*/
public init(){