You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by an...@apache.org on 2014/04/24 23:13:27 UTC

[4/7] git commit: Fix spelling typos

Fix spelling typos

github close #64


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/b0d0782d
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/b0d0782d
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/b0d0782d

Branch: refs/heads/browserify
Commit: b0d0782d442a473f45d7c3a6feeac86a030ad309
Parents: 967f116
Author: Josh Soref <js...@blackberry.com>
Authored: Thu Mar 6 17:33:12 2014 -0500
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Wed Apr 23 11:36:41 2014 -0400

----------------------------------------------------------------------
 README.md                                                    | 8 ++++----
 RELEASENOTES.md                                              | 6 +++---
 spec/platforms/amazon-fireos.spec.js                         | 2 +-
 spec/platforms/common.spec.js                                | 2 +-
 spec/plugins/Contacts/src/wp/Contacts.cs                     | 4 ++--
 spec/plugins/FaultyPlugin/plugin.xml                         | 4 ++--
 spec/plugins/WebNotifications/src/ios/AppDelegate.m.diff     | 2 +-
 spec/plugins/WebNotifications/src/ios/WebNotifications.h     | 2 +-
 spec/plugins/WebNotifications/src/ios/WebNotifications.m     | 2 +-
 spec/plugins/WebNotifications/www/webnotifications.js        | 2 +-
 .../cordova.echo/src/blackberry10/native/public/json/value.h | 8 ++++----
 .../src/blackberry10/native/public/json/writer.h             | 4 ++--
 .../src/blackberry10/native/public/json_batchallocator.h     | 8 ++++----
 .../src/blackberry10/native/public/json_internalmap.inl      | 2 +-
 .../src/blackberry10/native/public/json_value.cpp            | 2 +-
 .../src/blackberry10/native/public/json_writer.cpp           | 6 +++---
 .../cordova.echo/src/blackberry10/native/public/plugin.cpp   | 2 +-
 spec/projects/android_one/assets/www/cordova.js              | 6 +++---
 spec/projects/android_one/cordova/lib/cordova                | 6 +++---
 spec/projects/windows8/www/cordova-2.6.0.js                  | 6 +++---
 spec/projects/windows8/www/js/index.js                       | 2 +-
 spec/util/config-changes.spec.js                             | 4 ++--
 src/platform.js                                              | 2 +-
 src/platforms/common.js                                      | 2 +-
 src/prepare.js                                               | 2 +-
 src/util/config-changes.js                                   | 2 +-
 src/util/plugins.js                                          | 4 ++--
 src/util/w8jsproj.js                                         | 2 +-
 28 files changed, 52 insertions(+), 52 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 41c2314..15dca3e 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ You must have `git` on your PATH to be able to install plugins directly from rem
 
 
     plugman install --platform <ios|amazon-fireos|android|blackberry10|wp7|wp8> --project <directory> --plugin <name|url|path> [--plugins_dir <directory>] [--www <directory>] [--variable <name>=<value> [--variable <name>=<value> ...]]
-    plugman uninstall --platform <ios|amazon-fireos|android|blackberr10|wp7|wp8> --project <directory> --plugin <id> [--www <directory>] [--plugins_dir <directory>]
+    plugman uninstall --platform <ios|amazon-fireos|android|blackberry10|wp7|wp8> --project <directory> --plugin <id> [--www <directory>] [--plugins_dir <directory>]
 
 * Using minimum parameters, installs a plugin into a cordova project. You must specify a platform and cordova project location for that platform. You also must specify a plugin, with the different `--plugin` parameter forms being:
   * `name`: The directory name where the plugin contents exist. This must be an existing directory under the `--plugins_dir` path (see below for more info) or a plugin in the Cordova registry.
@@ -91,7 +91,7 @@ Installs a plugin into a specified cordova project of a specified platform.
  * `id`: a string representing the `id` of the plugin, a path to a cordova plugin with a valid `plugin.xml` file, or an `https://` or `git://` url to a git repository of a valid cordova plugin or a plugin published to the Cordova registry
  * `plugins_dir`: path to directory where plugins will be stored, defaults to `<project_dir>/cordova/plugins`
  * `subdir`: subdirectory within the plugin directory to consider as plugin directory root, defaults to `.`
- * `cli_variables`: an object mapping cordova plugin specification variable namess (see [plugin specification](plugin_spec.md)) to values
+ * `cli_variables`: an object mapping cordova plugin specification variable names (see [plugin specification](plugin_spec.md)) to values
  * `www_dir`: path to directory where web assets are to be copied to, defaults to the specified project directory's `www` dir (dependent on platform)
  * `callback`: callback to invoke once complete. If specified, will pass in an error object as a first parameter if the action failed. If not and an error occurs, `plugman` will throw the error
 
@@ -106,7 +106,7 @@ Uninstalls a previously-installed cordova plugin from a specified cordova projec
  * `id`: a string representing the `id` of the plugin
  * `plugins_dir`: path to directory where plugins are stored, defaults to `<project_dir>/cordova/plugins`
  * `subdir`: subdirectory within the plugin directory to consider as plugin directory root, defaults to `.`
- * `cli_variables`: an object mapping cordova plugin specification variable namess (see [plugin specification](plugin_spec.md)) to values
+ * `cli_variables`: an object mapping cordova plugin specification variable names (see [plugin specification](plugin_spec.md)) to values
  * `www_dir`: path to directory where web assets are to be copied to, defaults to the specified project directory's `www` dir (dependent on platform)
  * `callback`: callback to invoke once complete. If specified, will pass in an error object as a first parameter if the action failed. If not and an error occurs, `plugman` will throw the error
 
@@ -143,7 +143,7 @@ Adds a user account to the registry. Function takes no arguments other than a an
 
 ### `publish` method
 
-Publishes plugins to the registry. `plugin_paths` is an array of plugin paths to publish to the reigstry.
+Publishes plugins to the registry. `plugin_paths` is an array of plugin paths to publish to the registry.
 
     module.exports = function(plugin_paths, callback) {
 

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/RELEASENOTES.md
----------------------------------------------------------------------
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index b0e2306..172046c 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -84,7 +84,7 @@
 * Overhaul dependency uninstallation
 * [CB-4872] - adding in custom semver check for project
 * [CB-4872] - updated paths to version files
-* Update action-stack to avoid static platform detection + test if parseProjectFile is present instea
+* Update action-stack to avoid static platform detection + test if parseProjectFile is present instead
 * Update spec to match new ios parse method name
 * Update references to old ios parse method
 * Rename parse method and add a write method to result + parseIOSProjectFiles --> parseProjectFile +
@@ -102,10 +102,10 @@
 * [CB-4837]: Version 0.12.0. Release notes updated.
 * Rename CHANGELOG.md -> RELEASENOTES.md
 * CB-4492 tracking which of cli or plugman is used to fetch from registry
-* removed unncessary console.logs
+* removed unnecessary console.logs
 * add full ff support to plugman
 * add firefoxos
-* removed unncessary console.logs
+* removed unnecessary console.logs
 * add full ff support to plugman
 * add firefoxos
 * Fix tests broken by lazy module requiring.

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/platforms/amazon-fireos.spec.js
----------------------------------------------------------------------
diff --git a/spec/platforms/amazon-fireos.spec.js b/spec/platforms/amazon-fireos.spec.js
index 5bd7cc3..e634731 100644
--- a/spec/platforms/amazon-fireos.spec.js
+++ b/spec/platforms/amazon-fireos.spec.js
@@ -13,7 +13,7 @@ var amazon_fireos = require('../../src/platforms/amazon-fireos'),
     dummyplugin = path.join(__dirname, '..', 'plugins', 'DummyPlugin'),
     faultyplugin = path.join(__dirname, '..', 'plugins', 'FaultyPlugin'),
     variableplugin = path.join(__dirname, '..', 'plugins', 'VariablePlugin'),
-    amzon_fireos_one_project = path.join(__dirname, '..', 'projects', 'android_one', '*'),
+    amazon_fireos_one_project = path.join(__dirname, '..', 'projects', 'android_one', '*'),
     amazon_fireos_two_project = path.join(__dirname, '..', 'projects', 'android_two', '*');
 
 var xml_path     = path.join(dummyplugin, 'plugin.xml')

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/platforms/common.spec.js
----------------------------------------------------------------------
diff --git a/spec/platforms/common.spec.js b/spec/platforms/common.spec.js
index beb646b..dcf5f2a 100644
--- a/spec/platforms/common.spec.js
+++ b/spec/platforms/common.spec.js
@@ -105,7 +105,7 @@ describe('common platform handler', function() {
             shell.rm('-rf', java_dir);
         });
 
-        it('should delete empty directories after removing source code in a java src path heirarchy', function(){
+        it('should delete empty directories after removing source code in a java src path hierarchy', function(){
             shell.mkdir('-p', java_dir);
             fs.writeFileSync(java_file, 'contents', 'utf-8');
 

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/plugins/Contacts/src/wp/Contacts.cs
----------------------------------------------------------------------
diff --git a/spec/plugins/Contacts/src/wp/Contacts.cs b/spec/plugins/Contacts/src/wp/Contacts.cs
index af78942..6789bb8 100644
--- a/spec/plugins/Contacts/src/wp/Contacts.cs
+++ b/spec/plugins/Contacts/src/wp/Contacts.cs
@@ -537,7 +537,7 @@ namespace WPCordovaClassLib.Cordova.Commands
             return retVal.TrimEnd(',');
         }
 
-        private string getFormattedJSONAddress(ContactAddress address, bool isPrefered)
+        private string getFormattedJSONAddress(ContactAddress address, bool isPreferred)
         {
 
             string addressFormatString = "\"pref\":{0}," + // bool
@@ -557,7 +557,7 @@ namespace WPCordovaClassLib.Cordova.Commands
                                     + address.PhysicalAddress.PostalCode;
 
             string jsonAddress = string.Format(addressFormatString,
-                                               isPrefered ? "\"true\"" : "\"false\"",
+                                               isPreferred ? "\"true\"" : "\"false\"",
                                                address.Kind.ToString(),
                                                formattedAddress,
                                                address.PhysicalAddress.AddressLine1 + " " + address.PhysicalAddress.AddressLine2,

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/plugins/FaultyPlugin/plugin.xml
----------------------------------------------------------------------
diff --git a/spec/plugins/FaultyPlugin/plugin.xml b/spec/plugins/FaultyPlugin/plugin.xml
index 628496d..22564e7 100644
--- a/spec/plugins/FaultyPlugin/plugin.xml
+++ b/spec/plugins/FaultyPlugin/plugin.xml
@@ -127,7 +127,7 @@
 
         <source-file src="src/wp7/FaultyPlugin.cs" />
 
-        <!-- this desn't exist -->
+        <!-- this doesn't exist -->
         <source-file src="src/wp7/NotHere.cs" />
     </platform>
 
@@ -141,7 +141,7 @@
 
         <source-file src="src/wp8/FaultyPlugin.cs" />
 
-        <!-- this desn't exist -->
+        <!-- this doesn't exist -->
         <source-file src="src/wp8/NotHere.cs" />
     </platform>
 

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/plugins/WebNotifications/src/ios/AppDelegate.m.diff
----------------------------------------------------------------------
diff --git a/spec/plugins/WebNotifications/src/ios/AppDelegate.m.diff b/spec/plugins/WebNotifications/src/ios/AppDelegate.m.diff
index 30a557c..754d079 100644
--- a/spec/plugins/WebNotifications/src/ios/AppDelegate.m.diff
+++ b/spec/plugins/WebNotifications/src/ios/AppDelegate.m.diff
@@ -10,7 +10,7 @@
     //NSString *body = [notification.userInfo objectForKey:@"body"];
     NSString *tag = [notification.userInfo objectForKey:@"tag"];
     
-    [(WebNotifications*)[self.viewController getCommandInstance:@"WebNotifications"] clickNofification:tag];
+    [(WebNotifications*)[self.viewController getCommandInstance:@"WebNotifications"] clickNotification:tag];
     
     application.applicationIconBadgeNumber = 0;
     application.scheduledLocalNotifications = [NSArray arrayWithArray:application.scheduledLocalNotifications]; // "hack" to clear seen notifications

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/plugins/WebNotifications/src/ios/WebNotifications.h
----------------------------------------------------------------------
diff --git a/spec/plugins/WebNotifications/src/ios/WebNotifications.h b/spec/plugins/WebNotifications/src/ios/WebNotifications.h
index f0f158d..1702f40 100644
--- a/spec/plugins/WebNotifications/src/ios/WebNotifications.h
+++ b/spec/plugins/WebNotifications/src/ios/WebNotifications.h
@@ -30,6 +30,6 @@
 - (void)createNotification:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
 - (void)closeNotification:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
 
-- (void)clickNofification:(NSString*)tag;
+- (void)clickNotification:(NSString*)tag;
 
 @end

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/plugins/WebNotifications/src/ios/WebNotifications.m
----------------------------------------------------------------------
diff --git a/spec/plugins/WebNotifications/src/ios/WebNotifications.m b/spec/plugins/WebNotifications/src/ios/WebNotifications.m
index 46f9f55..6f0c11f 100644
--- a/spec/plugins/WebNotifications/src/ios/WebNotifications.m
+++ b/spec/plugins/WebNotifications/src/ios/WebNotifications.m
@@ -96,7 +96,7 @@
     [self.commandDelegate sendPluginResult:[CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsInt:0] callbackId:command.callbackId];
 }
 
-- (void)clickNofification:(NSString*)tag {
+- (void)clickNotification:(NSString*)tag {
     NSString *jsCallBack;
     
     jsCallBack = [NSString stringWithFormat:@"window.Notification.callOnclickByTag('%@')", tag];

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/plugins/WebNotifications/www/webnotifications.js
----------------------------------------------------------------------
diff --git a/spec/plugins/WebNotifications/www/webnotifications.js b/spec/plugins/WebNotifications/www/webnotifications.js
index e2409b3..6597337 100644
--- a/spec/plugins/WebNotifications/www/webnotifications.js
+++ b/spec/plugins/WebNotifications/www/webnotifications.js
@@ -43,7 +43,7 @@ if (typeof window.Notification == 'undefined') {
         this.soundUrl = options.soundUrl || '';
         this.badgeNumber = options.badgeNumber || 0;
 
-        // there must be one unique notification per tag, so close any existing outstanting notifications
+        // there must be one unique notification per tag, so close any existing outstanding notifications
         if (window.Notification.active[this.tag])
             window.Notification.active[this.tag].close();
         window.Notification.active[this.tag] = this;

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/plugins/cordova.echo/src/blackberry10/native/public/json/value.h
----------------------------------------------------------------------
diff --git a/spec/plugins/cordova.echo/src/blackberry10/native/public/json/value.h b/spec/plugins/cordova.echo/src/blackberry10/native/public/json/value.h
index 58bfd88..912b830 100644
--- a/spec/plugins/cordova.echo/src/blackberry10/native/public/json/value.h
+++ b/spec/plugins/cordova.echo/src/blackberry10/native/public/json/value.h
@@ -47,7 +47,7 @@ namespace Json {
 
    /** \brief Lightweight wrapper to tag static string.
     *
-    * Value constructor and objectValue member assignement takes advantage of the
+    * Value constructor and objectValue member assignment takes advantage of the
     * StaticString and avoid the cost of string duplication when storing the
     * string or the member name.
     *
@@ -102,7 +102,7 @@ namespace Json {
     * The sequence of an #arrayValue will be automatically resize and initialized 
     * with #nullValue. resize() can be used to enlarge or truncate an #arrayValue.
     *
-    * The get() methods can be used to obtanis default value in the case the required element
+    * The get() methods can be used to obtains default value in the case the required element
     * does not exist.
     *
     * It is possible to iterate over the list of a #objectValue values using 
@@ -479,7 +479,7 @@ namespace Json {
     * - ".name1.name2.name3"
     * - ".[0][1][2].name1[3]"
     * - ".%" => member name is provided as parameter
-    * - ".[%]" => index is provied as parameter
+    * - ".[%]" => index is provided as parameter
     */
    class Path
    {
@@ -616,7 +616,7 @@ namespace Json {
 
 
    /** \brief A linked page based hash-table implementation used internally by Value.
-    * \internal ValueInternalMap is a tradional bucket based hash-table, with a linked
+    * \internal ValueInternalMap is a traditional bucket based hash-table, with a linked
     * list in each bucket to handle collision. There is an addional twist in that
     * each node of the collision linked list is a page containing a fixed amount of
     * value. This provides a better compromise between memory usage and speed.

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/plugins/cordova.echo/src/blackberry10/native/public/json/writer.h
----------------------------------------------------------------------
diff --git a/spec/plugins/cordova.echo/src/blackberry10/native/public/json/writer.h b/spec/plugins/cordova.echo/src/blackberry10/native/public/json/writer.h
index 5f4b83b..16cf022 100644
--- a/spec/plugins/cordova.echo/src/blackberry10/native/public/json/writer.h
+++ b/spec/plugins/cordova.echo/src/blackberry10/native/public/json/writer.h
@@ -23,7 +23,7 @@ namespace Json {
    /** \brief Outputs a Value in <a HREF="http://www.json.org">JSON</a> format without formatting (not human friendly).
     *
     * The JSON document is written in a single line. It is not intended for 'human' consumption,
-    * but may be usefull to support feature such as RPC where bandwith is limited.
+    * but may be useful to support feature such as RPC where bandwidth is limited.
     * \sa Reader, Value
     */
    class JSON_API FastWriter : public Writer
@@ -41,7 +41,7 @@ namespace Json {
       void writeValue( const Value &value );
 
       std::string document_;
-      bool yamlCompatiblityEnabled_;
+      bool yamlCompatibilityEnabled_;
    };
 
    /** \brief Writes a Value in <a HREF="http://www.json.org">JSON</a> format in a human friendly way.

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/plugins/cordova.echo/src/blackberry10/native/public/json_batchallocator.h
----------------------------------------------------------------------
diff --git a/spec/plugins/cordova.echo/src/blackberry10/native/public/json_batchallocator.h b/spec/plugins/cordova.echo/src/blackberry10/native/public/json_batchallocator.h
index 87ea5ed..141ca77 100644
--- a/spec/plugins/cordova.echo/src/blackberry10/native/public/json_batchallocator.h
+++ b/spec/plugins/cordova.echo/src/blackberry10/native/public/json_batchallocator.h
@@ -49,7 +49,7 @@ public:
    }
 
    /// allocate space for an array of objectPerAllocation object.
-   /// @warning it is the responsability of the caller to call objects constructors.
+   /// @warning it is the responsibility of the caller to call objects constructors.
    AllocatedType *allocate()
    {
       if ( freeHead_ ) // returns node from free list.
@@ -77,7 +77,7 @@ public:
    }
 
    /// Release the object.
-   /// @warning it is the responsability of the caller to actually destruct the object.
+   /// @warning it is the responsibility of the caller to actually destruct the object.
    void release( AllocatedType *object )
    {
       assert( object != 0 );
@@ -94,7 +94,7 @@ private:
       AllocatedType buffer_[objectPerAllocation];
    };
 
-   // disabled copy constructor and assignement operator.
+   // disabled copy constructor and assignment operator.
    BatchAllocator( const BatchAllocator & );
    void operator =( const BatchAllocator &);
 
@@ -111,7 +111,7 @@ private:
 
    BatchInfo *batches_;
    BatchInfo *currentBatch_;
-   /// Head of a single linked list within the allocated space of freeed object
+   /// Head of a single linked list within the allocated space of freed object
    AllocatedType *freeHead_;
    unsigned int objectsPerPage_;
 };

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/plugins/cordova.echo/src/blackberry10/native/public/json_internalmap.inl
----------------------------------------------------------------------
diff --git a/spec/plugins/cordova.echo/src/blackberry10/native/public/json_internalmap.inl b/spec/plugins/cordova.echo/src/blackberry10/native/public/json_internalmap.inl
index 1977148..ef37991 100644
--- a/spec/plugins/cordova.echo/src/blackberry10/native/public/json_internalmap.inl
+++ b/spec/plugins/cordova.echo/src/blackberry10/native/public/json_internalmap.inl
@@ -361,7 +361,7 @@ ValueInternalMap::doActualRemove( ValueInternalLink *link,
 {
    // find last item of the bucket and swap it with the 'removed' one.
    // set removed items flags to 'available'.
-   // if last page only contains 'available' items, then desallocate it (it's empty)
+   // if last page only contains 'available' items, then deallocate it (it's empty)
    ValueInternalLink *&lastLink = getLastLinkInBucket( index );
    BucketIndex lastItemIndex = 1; // a link can never be empty, so start at 1
    for ( ;   

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/plugins/cordova.echo/src/blackberry10/native/public/json_value.cpp
----------------------------------------------------------------------
diff --git a/spec/plugins/cordova.echo/src/blackberry10/native/public/json_value.cpp b/spec/plugins/cordova.echo/src/blackberry10/native/public/json_value.cpp
index 6e5dcd3..67638ca 100644
--- a/spec/plugins/cordova.echo/src/blackberry10/native/public/json_value.cpp
+++ b/spec/plugins/cordova.echo/src/blackberry10/native/public/json_value.cpp
@@ -84,7 +84,7 @@ public:
    virtual char *duplicateStringValue( const char *value, 
                                        unsigned int length = unknown )
    {
-      //@todo invesgate this old optimization
+      //@todo investigate this old optimization
       //if ( !value  ||  value[0] == 0 )
       //   return 0;
 

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/plugins/cordova.echo/src/blackberry10/native/public/json_writer.cpp
----------------------------------------------------------------------
diff --git a/spec/plugins/cordova.echo/src/blackberry10/native/public/json_writer.cpp b/spec/plugins/cordova.echo/src/blackberry10/native/public/json_writer.cpp
index cdf4188..a522ef6 100644
--- a/spec/plugins/cordova.echo/src/blackberry10/native/public/json_writer.cpp
+++ b/spec/plugins/cordova.echo/src/blackberry10/native/public/json_writer.cpp
@@ -182,7 +182,7 @@ Writer::~Writer()
 // //////////////////////////////////////////////////////////////////
 
 FastWriter::FastWriter()
-   : yamlCompatiblityEnabled_( false )
+   : yamlCompatibilityEnabled_( false )
 {
 }
 
@@ -190,7 +190,7 @@ FastWriter::FastWriter()
 void 
 FastWriter::enableYAMLCompatibility()
 {
-   yamlCompatiblityEnabled_ = true;
+   yamlCompatibilityEnabled_ = true;
 }
 
 
@@ -252,7 +252,7 @@ FastWriter::writeValue( const Value &value )
             if ( it != members.begin() )
                document_ += ",";
             document_ += valueToQuotedString( name.c_str() );
-            document_ += yamlCompatiblityEnabled_ ? ": " 
+            document_ += yamlCompatibilityEnabled_ ? ": " 
                                                   : ":";
             writeValue( value[name] );
          }

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/plugins/cordova.echo/src/blackberry10/native/public/plugin.cpp
----------------------------------------------------------------------
diff --git a/spec/plugins/cordova.echo/src/blackberry10/native/public/plugin.cpp b/spec/plugins/cordova.echo/src/blackberry10/native/public/plugin.cpp
index 6906275..387fcea 100644
--- a/spec/plugins/cordova.echo/src/blackberry10/native/public/plugin.cpp
+++ b/spec/plugins/cordova.echo/src/blackberry10/native/public/plugin.cpp
@@ -158,7 +158,7 @@ char* g_str2global( const string& strRetVal )
 
     else
     {
-        // To minimaize the number of memory reallocations, the assumption
+        // To minimize the number of memory reallocations, the assumption
         // is that in most times this will be the case
         delete [] g_pszRetVal;
         g_pszRetVal = new char[ nMAXSIZE ];

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/projects/android_one/assets/www/cordova.js
----------------------------------------------------------------------
diff --git a/spec/projects/android_one/assets/www/cordova.js b/spec/projects/android_one/assets/www/cordova.js
index 30e7c70..000791b 100644
--- a/spec/projects/android_one/assets/www/cordova.js
+++ b/spec/projects/android_one/assets/www/cordova.js
@@ -881,7 +881,7 @@ function hookOnlineApis() {
     }
     // The network module takes care of firing online and offline events.
     // It currently fires them only on document though, so we bridge them
-    // to window here (while first listening for exec()-releated online/offline
+    // to window here (while first listening for exec()-related online/offline
     // events).
     window.addEventListener('online', pollOnce, false);
     window.addEventListener('offline', pollOnce, false);
@@ -5469,7 +5469,7 @@ getLocaleName:function(successCB, failureCB) {
 * successCB callback with a properties object as a parameter. If there is an error
 * formatting the date, then the errorCB callback is invoked.
 *
-* The defaults are: formatLenght="short" and selector="date and time"
+* The defaults are: formatLength="short" and selector="date and time"
 *
 * @param {Date} date
 * @param {Function} successCB
@@ -6166,7 +6166,7 @@ var exec = require('cordova/exec'),
     utils = require('cordova/utils');
 
 // Link the onLine property with the Cordova-supplied network info.
-// This works because we clobber the naviagtor object with our own
+// This works because we clobber the navigator object with our own
 // object in bootstrap.js.
 if (typeof navigator != 'undefined') {
     utils.defineGetter(navigator, 'onLine', function() {

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/projects/android_one/cordova/lib/cordova
----------------------------------------------------------------------
diff --git a/spec/projects/android_one/cordova/lib/cordova b/spec/projects/android_one/cordova/lib/cordova
index 294df49..be343e9 100755
--- a/spec/projects/android_one/cordova/lib/cordova
+++ b/spec/projects/android_one/cordova/lib/cordova
@@ -299,8 +299,8 @@ function run {
                 wait_for_emulator
                 install_emulator
             else
-                # TODO : look for emulator images and start one if it's availible
-                echo "Error : there are no availible devices or emulators to deploy to."
+                # TODO : look for emulator images and start one if it's available
+                echo "Error : there are no available devices or emulators to deploy to."
                 echo " create an emulator or connect your device to run this command."
                 echo "If you would like to create an emulator follow the instructions"
                 echo " provided here : http://developer.android.com/tools/devices/index.html"
@@ -381,6 +381,6 @@ elif [[ $# == 1 ]] ; then
         exit 2
     fi
 else
-    echo "Error : No command recieved, exiting..."
+    echo "Error : No command received, exiting..."
     exit 2
 fi
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/projects/windows8/www/cordova-2.6.0.js
----------------------------------------------------------------------
diff --git a/spec/projects/windows8/www/cordova-2.6.0.js b/spec/projects/windows8/www/cordova-2.6.0.js
index e7649db..2fedaa6 100644
--- a/spec/projects/windows8/www/cordova-2.6.0.js
+++ b/spec/projects/windows8/www/cordova-2.6.0.js
@@ -4750,7 +4750,7 @@ getLocaleName:function(successCB, failureCB) {
 * successCB callback with a properties object as a parameter. If there is an error
 * formatting the date, then the errorCB callback is invoked.
 *
-* The defaults are: formatLenght="short" and selector="date and time"
+* The defaults are: formatLength="short" and selector="date and time"
 *
 * @param {Date} date
 * @param {Function} successCB
@@ -5335,7 +5335,7 @@ var exec = require('cordova/exec'),
     utils = require('cordova/utils');
 
 // Link the onLine property with the Cordova-supplied network info.
-// This works because we clobber the naviagtor object with our own
+// This works because we clobber the navigator object with our own
 // object in bootstrap.js.
 if (typeof navigator != 'undefined') {
     utils.defineGetter(navigator, 'onLine', function() {
@@ -6118,7 +6118,7 @@ module.exports = {
         cameraCaptureUI.videoSettings.format = Windows.Media.Capture.CameraCaptureUIVideoFormat.mp4;
         cameraCaptureUI.videoSettings.maxDurationInSeconds = videoOptions.duration;
         cameraCaptureUI.captureFileAsync(Windows.Media.Capture.CameraCaptureUIMode.video).then(function (file) {
-            file.moveAsync(Windows.Storage.KnownFolders.videosLibrary, "cameraCaptureVedio.mp4", Windows.Storage.NameCollisionOption.generateUniqueName).then(function () {
+            file.moveAsync(Windows.Storage.KnownFolders.videosLibrary, "cameraCaptureVideo.mp4", Windows.Storage.NameCollisionOption.generateUniqueName).then(function () {
                 file.getBasicPropertiesAsync().then(function (basicProperties) {
                     var results = [];
                     results.push(new MediaFile(file.name, file.path, file.contentType, basicProperties.dateModified, basicProperties.size));

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/projects/windows8/www/js/index.js
----------------------------------------------------------------------
diff --git a/spec/projects/windows8/www/js/index.js b/spec/projects/windows8/www/js/index.js
index 31d9064..87b5660 100644
--- a/spec/projects/windows8/www/js/index.js
+++ b/spec/projects/windows8/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');
     },

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/spec/util/config-changes.spec.js
----------------------------------------------------------------------
diff --git a/spec/util/config-changes.spec.js b/spec/util/config-changes.spec.js
index 2efae84..9d93d72 100644
--- a/spec/util/config-changes.spec.js
+++ b/spec/util/config-changes.spec.js
@@ -143,7 +143,7 @@ describe('config-changes module', function() {
             beforeEach(function() {
                 shell.cp('-rf', android_two_project, temp);
             });
-            it('should return a flat config heirarchy for simple, one-off config changes', function() {
+            it('should return a flat config hierarchy for simple, one-off config changes', function() {
                 var xml;
                 var munger = new configChanges.PlatformMunger('android', temp, 'unused');
                 var munge = munger.generate_plugin_config_munge(dummyplugin, {});
@@ -184,7 +184,7 @@ describe('config-changes module', function() {
                 expect(configChanges.get_munge_change(munge, 'AndroidManifest.xml', '/manifest', '<!--library-->')).not.toBeDefined();
                 expect(configChanges.get_munge_change(munge, 'AndroidManifest.xml', '/manifest', '<!-- GCM connects to Google Services. -->')).not.toBeDefined();
             });
-            it('should increment config heirarchy leaves if dfferent config-file elements target the same file + selector + xml', function() {
+            it('should increment config hierarchy leaves if different config-file elements target the same file + selector + xml', function() {
                 var munger = new configChanges.PlatformMunger('android', temp, 'unused');
                 var munge = munger.generate_plugin_config_munge(configplugin, {});
                 expect(configChanges.get_munge_change(munge, 'res/xml/config.xml', '/widget', '<poop />').count).toEqual(2);

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/src/platform.js
----------------------------------------------------------------------
diff --git a/src/platform.js b/src/platform.js
index f85573d..c80ac75 100644
--- a/src/platform.js
+++ b/src/platform.js
@@ -52,7 +52,7 @@ module.exports = {
         //Remove the Platform in question
         pluginxml.getroot().remove( 0, pluginxml.find("./platform/[@name='"+ platformName +"']") );
 
-        //Rewrtie the plugin.xml file back out
+        //Rewrite the plugin.xml file back out
         fs.writeFileSync( "plugin.xml", pluginxml.write( "plugin.xml", {indent: 4} ), 'utf-8' );
 
         //Remove the src/"platform"

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/src/platforms/common.js
----------------------------------------------------------------------
diff --git a/src/platforms/common.js b/src/platforms/common.js
index e7ca241..9f01bdd 100644
--- a/src/platforms/common.js
+++ b/src/platforms/common.js
@@ -21,7 +21,7 @@ module.exports = common = {
         dest = module.exports.resolveTargetPath(project_dir, dest);
         shell.mkdir('-p', path.dirname(dest));
 
-        // XXX sheljs decides to create a directory when -R|-r is used which sucks. http://goo.gl/nbsjq
+        // XXX shelljs decides to create a directory when -R|-r is used which sucks. http://goo.gl/nbsjq
         if(fs.statSync(src).isDirectory()) {
             shell.cp('-Rf', src+'/*', dest);
         } else {

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/src/prepare.js
----------------------------------------------------------------------
diff --git a/src/prepare.js b/src/prepare.js
index 361249d..c650306 100644
--- a/src/prepare.js
+++ b/src/prepare.js
@@ -72,7 +72,7 @@ module.exports = function handlePrepare(project_dir, platform, plugins_dir, www_
     events.emit('verbose', 'Processing configuration changes for plugins.');
     config_changes.process(plugins_dir, project_dir, platform);
 
-    // for windows phone plaform we need to add all www resources to the .csproj file
+    // for windows phone platform we need to add all www resources to the .csproj file
     // first we need to remove them all to prevent duplicates
     var wp_csproj;
     if(platform == 'wp7' || platform == 'wp8') {

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/src/util/config-changes.js
----------------------------------------------------------------------
diff --git a/src/util/config-changes.js b/src/util/config-changes.js
index 3ca7cc0..818b785 100644
--- a/src/util/config-changes.js
+++ b/src/util/config-changes.js
@@ -516,7 +516,7 @@ function ConfigFile_load() {
         // plist file
         self.type = 'plist';
         // TODO: isBinaryPlist() reads the file and then parse re-reads it again.
-        //       We always write out text plist, not binaray.
+        //       We always write out text plist, not binary.
         //       Do we still need to support binary plist?
         //       If yes, use plist.parseStringSync() and read the file once.
         self.plist_module = (isBinaryPlist(filepath) ? bplist : plist);

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/src/util/plugins.js
----------------------------------------------------------------------
diff --git a/src/util/plugins.js b/src/util/plugins.js
index 7613169..5a5d14a 100644
--- a/src/util/plugins.js
+++ b/src/util/plugins.js
@@ -86,8 +86,8 @@ module.exports = {
             var xml = xml_helpers.parseElementtreeSync(xml_file);
             var plugin_id = xml.getroot().attrib.id;
 
-            // TODO: what if a plugin dependended on different subdirectories of the same plugin? this would fail.
-            // should probably copy over entire plugin git repo contents into plugins_dir and handle subdir seperately during install.
+            // TODO: what if a plugin depended on different subdirectories of the same plugin? this would fail.
+            // should probably copy over entire plugin git repo contents into plugins_dir and handle subdir separately during install.
             var plugin_dir = path.join(plugins_dir, plugin_id);
             events.emit('verbose', 'Copying fetched plugin over "' + plugin_dir + '"...');
             shell.cp('-R', path.join(tmp_dir, '*'), plugin_dir);

http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/b0d0782d/src/util/w8jsproj.js
----------------------------------------------------------------------
diff --git a/src/util/w8jsproj.js b/src/util/w8jsproj.js
index 692719e..8b06b23 100644
--- a/src/util/w8jsproj.js
+++ b/src/util/w8jsproj.js
@@ -228,7 +228,7 @@ jsproj.prototype = {
         fs.writeFileSync(solutionPath,solText,{encoding:"utf8"});
 
         // select first ItemsGroups with a ChildNode ProjectReference
-        // ideally select all, and look for @attib 'Include'= projectFullPath
+        // ideally select all, and look for @attrib 'Include'= projectFullPath
         var projectRefNodesPar = this.xml.find("ItemGroup/ProjectReference[@Include='" + relative_path + "']/..");
         if(projectRefNodesPar) {
             this.xml.getroot().remove(0, projectRefNodesPar);