Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit a901576

Browse files
committed
typo
1 parent bed7005 commit a901576

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CodePush.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ - (void)initializeUpdateAfterRestart
119119
_isFirstRunAfterUpdate = YES;
120120
BOOL wasInitialized = [pendingUpdate[PendingUpdateWasInitializedKey] boolValue];
121121
if (wasInitialized) {
122-
// Pending update was initialized, but notifiyApplicationReady was not called.
122+
// Pending update was initialized, but notifyApplicationReady was not called.
123123
// Therefore, deduce that it is a broken update and rollback.
124124
[self rollbackPackage];
125125
} else {

android/app/src/main/java/com/microsoft/codepush/react/CodePush.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ private void initializeUpdateAfterRestart() {
232232
try {
233233
boolean wasInitialized = pendingUpdate.getBoolean(PENDING_UPDATE_WAS_INITIALIZED_KEY);
234234
if (wasInitialized) {
235-
// Pending update was initialized, but notifiyApplicationReady was not called.
235+
// Pending update was initialized, but notifyApplicationReady was not called.
236236
// Therefore, deduce that it is a broken update and rollback.
237237
rollbackPackage();
238238
} else {

0 commit comments

Comments
 (0)