From a55a8d389c4ae340e279c92e63f805e4182b2e43 Mon Sep 17 00:00:00 2001 From: Mamad Purbo Date: Mon, 22 Feb 2016 11:50:28 +0900 Subject: [PATCH] added missing closing bracket on sample code. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 81925b6..3737846 100644 --- a/README.md +++ b/README.md @@ -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)") } } )