Skip to content

Commit

Permalink
Merge pull request #2 from WyriHaximus/patch-1
Browse files Browse the repository at this point in the history
Added two missing ''s
  • Loading branch information
dereuromark committed Jan 18, 2016
2 parents cad6f67 + 1fc9ac0 commit b261bfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/MetaHelper.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ You can define your defaults in various places, the lowest is the Configure leve
```php
$config = [
'Meta' => [
'language => 'de',
'language' => 'de',
'robots' => ['index' => true, 'follow' => true]
]
];
Expand All @@ -37,7 +37,7 @@ If you need to customize them per controller or per action you can pass them fro
In your controller, you could do the following:
```php
$_meta = [
'title => 'Foo Bar',
'title' => 'Foo Bar',
'robots' => ['index' => false]
];
$this->set(compact('_meta')));
Expand Down

0 comments on commit b261bfe

Please sign in to comment.