Skip to content

Commit

Permalink
fix(subgenerators): fix indefinite articles
Browse files Browse the repository at this point in the history
  • Loading branch information
cueedee committed Apr 14, 2015
1 parent 80632d4 commit a9ad66c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion generators/collection/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ module.exports = yeoman.generators.Base.extend(

// Have Yeoman greet the user.
//
this.log( yosay( "So you want an BAT collection?" ) );
this.log( yosay( "So you want a BAT collection?" ) );

// Ask the user for the webapp details
//
Expand Down
2 changes: 1 addition & 1 deletion generators/model/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ module.exports = yeoman.generators.Base.extend(
// Have Yeoman greet the user.
//
if( !this.options.nested ) {
this.log( yosay( "So you want an BAT model?" ) );
this.log( yosay( "So you want a BAT model?" ) );

// Ask the user for the webapp details
//
Expand Down
4 changes: 2 additions & 2 deletions generators/view/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ module.exports = yeoman.generators.Base.extend(

// Have Yeoman greet the user.
//
this.log( yosay( "So you want an BAT view?" ) );
this.log( yosay( "So you want a BAT view?" ) );

// Ask the user for the webapp details
//
Expand All @@ -89,7 +89,7 @@ module.exports = yeoman.generators.Base.extend(
, {
type: "confirm"
, name: "sassFile"
, message: "Would you like an SASS file for this view?"
, message: "Would you like a SASS file for this view?"
, default: true
}
];
Expand Down

0 comments on commit a9ad66c

Please sign in to comment.