fixed typo

This commit is contained in:
Patrick 2015-02-14 01:07:31 +01:00
parent 047f34863d
commit 86064842f4

View file

@ -66,7 +66,7 @@ To start we will just send a hardcoded array to the template. Go to you `Homepag
```php
$data = [
'name' => $this->request->getParameter('name', 'stranger'),
'menuItems' => 'menuItems' => [['href' => '/', 'text' => 'Homepage']],
'menuItems' => [['href' => '/', 'text' => 'Homepage']],
];
```