From 3be5a9ac72dce3889590ba9e81c178e24da12f28 Mon Sep 17 00:00:00 2001 From: Jonathan Carter Date: Tue, 8 Dec 2015 23:32:45 -0800 Subject: [PATCH] Fixing comment to reflect API name change We renamed `failedApply` to `failedInstall` but forgot to update this comment to reflect that change. --- CodePush.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CodePush.m b/CodePush.m index fa05255..e4498ef 100644 --- a/CodePush.m +++ b/CodePush.m @@ -356,7 +356,7 @@ RCT_EXPORT_METHOD(installUpdate:(NSDictionary*)updatePackage /* * This method isn't publicly exposed via the "react-native-code-push" - * module, and is only used internally to populate the RemotePackage.failedApply property. + * module, and is only used internally to populate the RemotePackage.failedInstall property. */ RCT_EXPORT_METHOD(isFailedUpdate:(NSString *)packageHash resolve:(RCTPromiseResolveBlock)resolve @@ -406,4 +406,4 @@ RCT_EXPORT_METHOD(setUsingTestFolder:(BOOL)shouldUseTestFolder) usingTestFolder = shouldUseTestFolder; } -@end \ No newline at end of file +@end