diff --git a/CodePush.m b/CodePush.m index 75861cc..1d784e2 100644 --- a/CodePush.m +++ b/CodePush.m @@ -119,7 +119,7 @@ static NSString *const PendingUpdateWasInitializedKey = @"wasInitialized"; _isFirstRunAfterUpdate = YES; BOOL wasInitialized = [pendingUpdate[PendingUpdateWasInitializedKey] boolValue]; if (wasInitialized) { - // Pending update was initialized, but notifiyApplicationReady was not called. + // Pending update was initialized, but notifyApplicationReady was not called. // Therefore, deduce that it is a broken update and rollback. [self rollbackPackage]; } else { diff --git a/android/app/src/main/java/com/microsoft/codepush/react/CodePush.java b/android/app/src/main/java/com/microsoft/codepush/react/CodePush.java index 87c6c6d..76de1af 100644 --- a/android/app/src/main/java/com/microsoft/codepush/react/CodePush.java +++ b/android/app/src/main/java/com/microsoft/codepush/react/CodePush.java @@ -232,7 +232,7 @@ public class CodePush { try { boolean wasInitialized = pendingUpdate.getBoolean(PENDING_UPDATE_WAS_INITIALIZED_KEY); if (wasInitialized) { - // Pending update was initialized, but notifiyApplicationReady was not called. + // Pending update was initialized, but notifyApplicationReady was not called. // Therefore, deduce that it is a broken update and rollback. rollbackPackage(); } else {