Skip to content

Commit

Permalink
Spelling (#1060)
Browse files Browse the repository at this point in the history
* spelling: committed

* spelling: correctly

* spelling: multiple

* spelling: parameters

* spelling: store

* spelling: without
  • Loading branch information
jsoref authored and SBoudrias committed Feb 26, 2018
1 parent d8253fc commit e582a00
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion test/conflicter.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('Conflicter', () => {
});

describe('#resolve()', () => {
it('wihout conflict', function (done) {
it('without conflict', function (done) {
this.conflicter.resolve(done);
});

Expand Down
2 changes: 1 addition & 1 deletion test/prompt-suggestion.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});
Expand Down
2 changes: 1 addition & 1 deletion test/storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit e582a00

Please sign in to comment.