Fix spelling errors (#6)

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 @@
     // 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 @@
     // 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');
     },