From e079bb9ece8dcbc3f90a2f687cf7e00a1f40b90f Mon Sep 17 00:00:00 2001 From: Tristan Tran Date: Wed, 16 Nov 2016 15:07:53 -0500 Subject: [PATCH] Correct console message in status change example (#609) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e3127d1..3b55bc6 100644 --- a/README.md +++ b/README.md @@ -843,7 +843,7 @@ This decorator provides support for letting you customize its behaviour to easil console.log("Installing update."); break; case codePush.SyncStatus.UP_TO_DATE: - console.log("Installing update."); + console.log("Up-to-date."); break; case codePush.SyncStatus.UPDATE_INSTALLED: console.log("Update installed.");