From e582a007fe416c25832b2ff68996fed023d43ad3 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sun, 25 Feb 2018 23:13:01 -0500 Subject: [PATCH] Spelling (#1060) * spelling: committed * spelling: correctly * spelling: multiple * spelling: parameters * spelling: store * spelling: without --- deploy.sh | 2 +- lib/index.js | 4 ++-- test/conflicter.js | 2 +- test/prompt-suggestion.js | 2 +- test/storage.js | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/deploy.sh b/deploy.sh index 1c38bec9..988c7e50 100755 --- a/deploy.sh +++ b/deploy.sh @@ -59,7 +59,7 @@ git config user.email $COMMIT_AUTHOR_EMAIL # Commit the new of the new version git add --all . git commit -m "Deploy docs to GitHub Pages ($TRAVIS_TAG)" -echo -e "Comitted docs to $TARGET_BRANCH\n" +echo -e "Committed docs to $TARGET_BRANCH\n" # Now that we're all set up, we can push. # Info: Any command that using GH_OAUTH_TOKEN must pipe the output to /dev/null diff --git a/lib/index.js b/lib/index.js index 870a59ab..a0a9f1cc 100644 --- a/lib/index.js +++ b/lib/index.js @@ -90,7 +90,7 @@ class Generator extends EventEmitter { default: false }); - // Checks required paramaters + // Checks required parameters assert(this.options.env, 'You must provide the environment object. Use env#create() to create a new generator.'); assert(this.options.resolved, 'You must provide the resolved path value. Use env#create() to create a new generator.'); this.env = this.options.env; @@ -481,7 +481,7 @@ class Generator extends EventEmitter { let generator; options = options || {}; - // Pass down the default options so they're correclty mirrored down the chain. + // Pass down the default options so they're correctly mirrored down the chain. options = _.extend({ skipInstall: this.options.skipInstall, 'skip-install': this.options.skipInstall, diff --git a/test/conflicter.js b/test/conflicter.js index 3bdf8182..7a3bd348 100644 --- a/test/conflicter.js +++ b/test/conflicter.js @@ -24,7 +24,7 @@ describe('Conflicter', () => { }); describe('#resolve()', () => { - it('wihout conflict', function (done) { + it('without conflict', function (done) { this.conflicter.resolve(done); }); diff --git a/test/prompt-suggestion.js b/test/prompt-suggestion.js index 81e05d5a..c67f9003 100644 --- a/test/prompt-suggestion.js +++ b/test/prompt-suggestion.js @@ -414,7 +414,7 @@ describe('PromptSuggestion', () => { assert.equal(this.store.get('promptValues').respuesta, 'baz'); }); - describe('empty sotre', () => { + describe('empty store', () => { beforeEach(function () { this.store.delete('promptValues'); }); diff --git a/test/storage.js b/test/storage.js index 6592910a..ad43c142 100644 --- a/test/storage.js +++ b/test/storage.js @@ -77,7 +77,7 @@ describe('Storage', () => { assert.equal(this.store.get('name'), 'Yeoman!'); }); - it('set multipe values at once', function () { + it('set multiple values at once', function () { this.store.set({foo: 'bar', john: 'doe'}); assert.equal(this.store.get('foo'), 'bar'); assert.equal(this.store.get('john'), 'doe');