Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Kelly Selden committed Sep 21, 2016
1 parent 19a977d commit 03cd7af
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Be sure to include (At the very least):

And ideally

* a isolated demonstration of this issue as a github repo
* an isolated demonstration of this issue as a github repo

## Requesting a Feature

Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/brocfile-smoke-test-slow.js
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ describe('Acceptance: brocfile-smoke-test', function() {
});
});

it('specifying outputFile results in a explicitly generated assets', function() {
it('specifying outputFile results in an explicitly generated assets', function() {
return copyFixtureFiles('brocfile-tests/app-import-output-file')
.then(function () {
return runCommand(path.join('.', 'node_modules', 'ember-cli', 'bin', 'ember'), 'build');
Expand Down
2 changes: 1 addition & 1 deletion tests/helpers/acceptance.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function createTmp(command) {
* Use `createTestTargets` in the before hook to do the initial
* setup of a project. This will ensure that we limit the amount of times
* we go to the network to fetch dependencies.
* @param {String} projectName The name of the project. Can be a app or addon.
* @param {String} projectName The name of the project. Can be an app or addon.
* @param {Object} options
* @property {String} options.command The command you want to run
* @return {Promise} The result of the running the command
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/commands/init-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ describe('init command', function() {


it('Uses process.cwd if no package is found when calling installBlueprint', function() {
// change the working dir so `process.cwd` can't be a invalid path for base directories
// change the working dir so `process.cwd` can't be an invalid path for base directories
// named `ember-cli`.

var tmpDir = os.tmpdir();
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/ui/index-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ describe('UI', function() {
expect(ui.output).to.equal(chalk.yellow('WARNING: foo') + EOL);
});

it('writes a un-prepended message if prepend is false', function() {
it('writes an un-prepended message if prepend is false', function() {
ui.writeWarnLine('foo', false, false);
expect(ui.output).to.equal(chalk.yellow('foo') + EOL);
});
Expand All @@ -60,7 +60,7 @@ describe('UI', function() {
expect(ui.output).to.equal(chalk.yellow('DEPRECATION: foo') + EOL);
});

it('writes a un-prepended message if prepend is false', function() {
it('writes an un-prepended message if prepend is false', function() {
ui.writeDeprecateLine('foo', false, false);
expect(ui.output).to.equal(chalk.yellow('foo') + EOL);
});
Expand Down

0 comments on commit 03cd7af

Please sign in to comment.