From 9e0493a20d2132faa81baceecc8b3a401f29fd2c Mon Sep 17 00:00:00 2001 From: Oleksandr Bretsko Date: Tue, 17 May 2016 08:43:40 +0400 Subject: [PATCH] fixed Readme replaced importObjects with importUniqueObjects --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a576af9..0248f07 100644 --- a/README.md +++ b/README.md @@ -733,7 +733,7 @@ or multiple objects at once with the `importUniqueObjects(...)` method: ```swift CoreStore.beginAsynchronous { (transaction) -> Void in let jsonArray: [[String: AnyObject]] = // ... - try! transaction.importObjects( + try! transaction.importUniqueObjects( Into(MyPersonEntity), sourceArray: jsonArray )