From c6eae791e72e13126cdd2b9dbbf77cf556b8368e Mon Sep 17 00:00:00 2001 From: Max Bassett Date: Wed, 10 Aug 2016 15:13:27 -0400 Subject: [PATCH] More apostrophe escaping --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d8a21a2..0633ba5 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ else { } }, function() { - console.log('Failed to check the device's idle state.'); + console.log('Failed to check the device\'s idle state.'); }); ``` @@ -110,7 +110,7 @@ window.powerManagement.isIgnoringBatteryOptimizations(function(result) { console.log('This app IS NOT on the device\'s battery optimization whitelist.'); } }, function() { - console.log('Failed to add the app to the device's battery optimization whitelist.'); + console.log('Failed to add the app to the device\'s battery optimization whitelist.'); }); ```