Skip to content

Commit

Permalink
Removed extra format specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
jspencer committed Jul 22, 2014
1 parent 65c5187 commit 40eda37
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 @@ -48,7 +48,7 @@ To use a WebViewJavascriptBridge in your own project:
[bridge send:@"Well hello there"];
[bridge send:[NSDictionary dictionaryWithObject:@"Foo" forKey:@"Bar"]];
[bridge send:@"Give me a response, will you?" responseCallback:^(id responseData) {
NSLog(@"ObjC got its response! %@ %@", responseData);
NSLog(@"ObjC got its response! %@", responseData);
}];

4) Finally, set up the javascript side:
Expand Down

0 comments on commit 40eda37

Please sign in to comment.