Skip to content

Commit

Permalink
style(english): remove extra spaces before punctuation
Browse files Browse the repository at this point in the history
  • Loading branch information
balthazar committed Feb 5, 2015
1 parent 3e0b7ad commit dd09f0d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion api/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var BangularGenerator = yeoman.generators.NamedBase.extend({
this.prompt([{
type: 'input',
name: 'url',
message: 'On which url do you want to attach the ' + chalk.red(this.name) + ' endpoint ? ',
message: 'On which url do you want to attach the ' + chalk.red(this.name) + ' endpoint? ',
default: '/api/' + this.pluralName
}], function (props) {
this.url = props.url;
Expand Down
2 changes: 1 addition & 1 deletion app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ var BangularGenerator = yeoman.generators.Base.extend({
}, {
type: 'checkbox',
name: 'modules',
message: 'Which module do you want to load ?',
message: 'Which module do you want to load?',
choices: [{
value: 'ngCookies',
name: 'angular-cookies',
Expand Down
2 changes: 1 addition & 1 deletion directive/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var BangularGenerator = yeoman.generators.NamedBase.extend({
self.prompt([{
type: 'confirm',
name: 'template',
message: 'Do this directive needs an html template ?',
message: 'Do this directive needs an html template?',
default: true
}], function (props) {
self.needTemplate = props.template;
Expand Down
2 changes: 1 addition & 1 deletion font/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var BangularGenerator = yeoman.generators.NamedBase.extend({
this.prompt([{
type: 'checkbox',
name: 'types',
message: 'What font file do you have ?',
message: 'What font file do you have?',
choices: [{
value: 'otf',
name: 'otf',
Expand Down
2 changes: 1 addition & 1 deletion style/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var BangularGenerator = yeoman.generators.NamedBase.extend({
this.prompt([{
type: 'confirm',
name: 'import',
message: 'Do you want to import the ' + chalk.red(this.name) + ' style in your app.scss ?',
message: 'Do you want to import the ' + chalk.red(this.name) + ' style in your app.scss?',
default: true
}], function (props) {
this.import = props.import;
Expand Down

0 comments on commit dd09f0d

Please sign in to comment.