Merge pull request #53 from mpurbo/patch-1

added missing closing bracket on sample code.
This commit is contained in:
John Estropia
2016-02-22 22:26:38 +09:00

View File

@@ -260,9 +260,9 @@ do {
completion: { (result) -> Void in
switch result {
case .Success(let persistentStore):
print("Successfully added sqlite store: \(persistentStore)"
print("Successfully added sqlite store: \(persistentStore)")
case .Failure(let error):
print("Failed adding sqlite store with error: \(error)"
print("Failed adding sqlite store with error: \(error)")
}
}
)