added missing closing bracket on sample code.

This commit is contained in:
Mamad Purbo
2016-02-22 11:50:28 +09:00
parent 6e88b14237
commit a55a8d389c

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)")
}
}
)