Skip to content

Commit

Permalink
Merge pull request #68 from revolt666/patch-1
Browse files Browse the repository at this point in the history
Fixed string syntax typo in README.
  • Loading branch information
nlutsenko committed Nov 20, 2014
2 parents dcea5b9 + d9a98da commit 1bbbb34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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];
)];
}
```
Expand Down

0 comments on commit 1bbbb34

Please sign in to comment.