Skip to content

Commit

Permalink
fixed incorrect string syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Iulian Onofrei committed Nov 18, 2014
1 parent dcea5b9 commit d9a98da
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 d9a98da

Please sign in to comment.