Skip to content

Commit

Permalink
tweaking wording
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Oct 23, 2015
1 parent 3511080 commit 92719a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions artisan.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ If you need to give the user a predefined set of choices, you may use the `choic
<a name="writing-output"></a>
### Writing Output

To send output to the console, use the `line`, `info`, `comment`, `question` and `error` methods. Other than `line`, each of these methods will use the appropriate ANSI colors for their purpose.
To send output to the console, use the `line`, `info`, `comment`, `question` and `error` methods. Each of these methods will use the appropriate ANSI colors for their purpose.

To display an information message to the user, use the `info` method. Typically, this will display in the console as green text:

Expand All @@ -262,9 +262,9 @@ To display an error message, use the `error` method. Error message text is typic

$this->error('Something went wrong!');

If you want to display a non-colored line, use the `line` method:
If you want to display plain console output, use the `line` method. The `line` method does not receive any unique coloration:

$this->line('I am just a simple, non-colored line');
$this->line('Display this on the screen');

#### Table Layouts

Expand Down

0 comments on commit 92719a7

Please sign in to comment.