From d9a98dafc03b53f5e7ecc4461b53399f5a7965d0 Mon Sep 17 00:00:00 2001 From: Iulian Onofrei Date: Tue, 18 Nov 2014 17:32:18 +0200 Subject: [PATCH] fixed incorrect string syntax --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 42ab5f43b..074610375 100644 --- a/Readme.md +++ b/Readme.md @@ -81,7 +81,7 @@ BFTasks use Objective-C blocks, so the syntax should be pretty straightforward. // and provides an NSString as output. NSNumber *number = task.result; - return [NSString stringWithFormat:"%@", number]; + return [NSString stringWithFormat:@"%@", number]; )]; } ```