Skip to content

Commit

Permalink
Merge pull request consolidation#155 from javigomez/patch-2
Browse files Browse the repository at this point in the history
Fix error in array name at documentation
  • Loading branch information
burzum committed Mar 28, 2015
2 parents 1057a32 + 53292d9 commit 516e52d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/started.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ To define command options you should define last method parameter as an associat
<?php
function hello($opts = ['silent' => false])
{
if (!$opt['silent']) $this->say("Hello, world");
if (!$opts['silent']) $this->say("Hello, world");
}
?>
```
Expand Down Expand Up @@ -347,4 +347,4 @@ To allow tasks access IO use `Robo\Common\TaskIO` trait or inherit task class fr

```
$this->printTaskInfo('Processing...');
```
```

0 comments on commit 516e52d

Please sign in to comment.