From a9015761c9bf32271c8ebb5a7b1d85cb986f8b7a Mon Sep 17 00:00:00 2001 From: Geoffrey Goh Date: Thu, 10 Dec 2015 10:41:58 -0800 Subject: [PATCH] typo --- CodePush.m | 2 +- .../src/main/java/com/microsoft/codepush/react/CodePush.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 {