From ed370eeaad84895efa99d2efba9bcc461ae21312 Mon Sep 17 00:00:00 2001 From: daviskoh Date: Mon, 30 Mar 2015 18:43:11 -0400 Subject: [PATCH] fix objc syntax error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dabbeb14f..57d283785 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ It is certainly possible to create a great app using React Native without writin - (void)processString:(NSString *)input callback:(RCTResponseSenderBlock)callback { RCT_EXPORT(); // available as NativeModules.MyCustomModule.processString - callback(@[[input stringByReplacingOccurrencesOfString:@"Goodbye" withString:@"Hello"];]]); + callback(@[[input stringByReplacingOccurrencesOfString:@"Goodbye" withString:@"Hello"]]); } @end ```