Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed Apr 28, 2015
1 parent e6d0d83 commit b4b273f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/commands/AppCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ protected function askUserPassword()
protected function askUserDummyData()
{
// Ask the user to input the user password
$dummydata = $this->ask('Do you want to seed your database with dummy data? (deafult is yes): ');
$dummydata = $this->ask('Do you want to seed your database with dummy data? y/n (default is yes): ');

$this->dummyData = ( strstr($dummydata, 'y' ) || empty($dummydata) ) ? true : false;
}
Expand Down

0 comments on commit b4b273f

Please sign in to comment.