From 34aec531f1045dd3c862018fb6a2c66f7fcd7903 Mon Sep 17 00:00:00 2001 From: Marc Prud'hommeaux Date: Fri, 31 Jan 2014 10:15:04 -0500 Subject: [PATCH] Typo fix task.result() is not valid Objective-C; replaced it with task.result --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 8130bcd10..68eb582d3 100644 --- a/Readme.md +++ b/Readme.md @@ -38,7 +38,7 @@ Every `BFTask` has a method named `continueWithBlock` which takes a continuation // the save failed. } else { // the object was saved successfully. - PFObject *object = task.result(); + PFObject *object = task.result; } return nil; }];