You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ja...@apache.org on 2018/08/10 16:44:31 UTC

[cordova-labs] branch cordova-client updated: Fix spelling errors (#6)

This is an automated email from the ASF dual-hosted git repository.

janpio pushed a commit to branch cordova-client
in repository https://gitbox.apache.org/repos/asf/cordova-labs.git


The following commit(s) were added to refs/heads/cordova-client by this push:
     new 7403c89  Fix spelling errors (#6)
7403c89 is described below

commit 7403c89318cd993ab74ccfc7b9a1329b805c328e
Author: Josh Soref <js...@users.noreply.github.com>
AuthorDate: Fri Aug 10 12:44:29 2018 -0400

    Fix spelling errors (#6)
---
 spec/fixtures/projects/native/blackberry/project.properties   | 2 +-
 spec/fixtures/projects/native/blackberry/www/js/index.js      | 2 +-
 spec/fixtures/projects/native/ios/balls/Classes/AppDelegate.m | 2 +-
 spec/fixtures/projects/native/ios/www/js/index.js             | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/spec/fixtures/projects/native/blackberry/project.properties b/spec/fixtures/projects/native/blackberry/project.properties
index 67213c2..47e2e49 100644
--- a/spec/fixtures/projects/native/blackberry/project.properties
+++ b/spec/fixtures/projects/native/blackberry/project.properties
@@ -18,7 +18,7 @@
 #     e.g. C:\some\path must be C:\\some\\path
 #
 #   Please remember to:
-#     - Double escape your backslahses (i.e. \ must be \\)
+#     - Double escape your backslashes (i.e. \ must be \\)
 #     - Do not add a trailing slash (e.g. C:\some\path)
 #
 blackberry.bbwp.dir=C:\\Program Files\\Research In Motion\\BlackBerry WebWorks Packager
diff --git a/spec/fixtures/projects/native/blackberry/www/js/index.js b/spec/fixtures/projects/native/blackberry/www/js/index.js
index 31d9064..87b5660 100644
--- a/spec/fixtures/projects/native/blackberry/www/js/index.js
+++ b/spec/fixtures/projects/native/blackberry/www/js/index.js
@@ -31,7 +31,7 @@ var app = {
     // deviceready Event Handler
     //
     // The scope of 'this' is the event. In order to call the 'receivedEvent'
-    // function, we must explicity call 'app.receivedEvent(...);'
+    // function, we must explicitly call 'app.receivedEvent(...);'
     onDeviceReady: function() {
         app.receivedEvent('deviceready');
     },
diff --git a/spec/fixtures/projects/native/ios/balls/Classes/AppDelegate.m b/spec/fixtures/projects/native/ios/balls/Classes/AppDelegate.m
index ea16bc4..47b7d5a 100644
--- a/spec/fixtures/projects/native/ios/balls/Classes/AppDelegate.m
+++ b/spec/fixtures/projects/native/ios/balls/Classes/AppDelegate.m
@@ -130,7 +130,7 @@
 
 - (NSUInteger) application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
 {    
-    // IPhone doesn't support upside down by default, while the IPad does.  Override to allow all orientations always, and let the root view controller decide whats allowed (the supported orientations mask gets intersected).
+    // iPhone doesn't support upside down by default, while the iPad does.  Override to allow all orientations always, and let the root view controller decide whats allowed (the supported orientations mask gets intersected).
     NSUInteger supportedInterfaceOrientations = (1 << UIInterfaceOrientationPortrait) | (1 << UIInterfaceOrientationLandscapeLeft) | (1 << UIInterfaceOrientationLandscapeRight) | (1 << UIInterfaceOrientationPortraitUpsideDown);
     return supportedInterfaceOrientations;
 }
diff --git a/spec/fixtures/projects/native/ios/www/js/index.js b/spec/fixtures/projects/native/ios/www/js/index.js
index 3b75d3f..bf02e98 100644
--- a/spec/fixtures/projects/native/ios/www/js/index.js
+++ b/spec/fixtures/projects/native/ios/www/js/index.js
@@ -31,7 +31,7 @@ var app = {
     // deviceready Event Handler
     //
     // The scope of `this` is the event. In order to call the `receivedEvent`
-    // function, we must explicity call `app.receivedEvent(...);`
+    // function, we must explicitly call `app.receivedEvent(...);`
     onDeviceReady: function() {
         app.receivedEvent('deviceready');
     },


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org