Skip to content

Commit

Permalink
Wording
Browse files Browse the repository at this point in the history
  • Loading branch information
euromark committed May 13, 2014
1 parent 33dea13 commit 12be539
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Console/Command/BakeShell.php
Expand Up @@ -77,13 +77,13 @@ public function main() {
$this->out(__d('cake_console', 'Add your database connection information to App/Config/app.php.'));
return false;
}
$this->out(__d('cake_console', 'The following commands you can generate skeleton code your your application.'));
$this->out(__d('cake_console', 'The following commands you can use to generate skeleton code for your application.'));
$this->out('');
$this->out(__d('cake_console', '<info>Available bake commands:</info>'));
$this->out('');
foreach ($this->tasks as $task) {
list($p, $name) = pluginSplit($task);
$this->out(Inflector::underscore($name));
$this->out('- ' . Inflector::underscore($name));
}
$this->out('');
$this->out(__d('cake_console', 'By using <info>Console/cake bake [name]</info> you can invoke a specific bake task.'));
Expand Down

0 comments on commit 12be539

Please sign in to comment.