From 27408709f054e5fbf06b14e5c323db0e2887dbe2 Mon Sep 17 00:00:00 2001 From: Jonathan Carter Date: Sun, 13 Mar 2016 20:40:44 -0700 Subject: [PATCH] Fixing typo --- ios/CodePush/CodePush.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ios/CodePush/CodePush.m b/ios/CodePush/CodePush.m index 911d3d5..0e77307 100644 --- a/ios/CodePush/CodePush.m +++ b/ios/CodePush/CodePush.m @@ -213,12 +213,12 @@ static NSString *bundleResourceName = @"main"; "1. Update your AppDelegate.m file to load the JS bundle from the packager instead of from CodePush. " "You can still test your CodePush update experience using this workflow (debug builds only).\n\n" - "2. Force the JS bundle to be generated in simulator builds by removing the if block which echoes " + "2. Force the JS bundle to be generated in simulator builds by removing the if block that echoes " "\"Skipping bundling for Simulator platform\" in the \"node_modules/react-native/packager/react-native-xcode.sh\" file.\n\n" "3. Deploy a release build to the simulator, which unlike debug builds, will generate the JS bundle (React Native >=0.22.0 only)."; #else - errorMessage = = [NSString stringWithFormat:@"The specified JS bundle file wasn't found within the app's binary. Is \"%@\" the correct file name?", [bundleResourceName stringByAppendingPathExtension:bundleResourceExtension]]; + errorMessage = [NSString stringWithFormat:@"The specified JS bundle file wasn't found within the app's binary. Is \"%@\" the correct file name?", [bundleResourceName stringByAppendingPathExtension:bundleResourceExtension]]; #endif RCTFatal([NSError errorWithDomain:@"CodePushError" code:-1 @@ -708,4 +708,4 @@ RCT_EXPORT_METHOD(downloadAndReplaceCurrentBundle:(NSString *)remoteBundleUrl) } } -@end \ No newline at end of file +@end