Merge pull request #1 from Steve-A-Orr/11-page-menu-word-correction

Replace word 'order' with 'folder'.
This commit is contained in:
Steven Orr 2015-12-12 22:56:03 -08:00
commit ed960ddb7d

View file

@ -181,7 +181,7 @@ Everything should work now, but it doesn't really make sense that the menu is de
Right now the menu is defined in the array, but it is very likely that this will change in the future. Maybe you want to define it in the database or maybe you even want to generate it dynamically based on the pages available. We don't have this information and things might change in the future. Right now the menu is defined in the array, but it is very likely that this will change in the future. Maybe you want to define it in the database or maybe you even want to generate it dynamically based on the pages available. We don't have this information and things might change in the future.
So let's do the right thing here and start with an interface again. But first, create a new order in the `src` directory for the menu related things. `Menu` sounds like a reasonable name, doesn't it? So let's do the right thing here and start with an interface again. But first, create a new folder in the `src` directory for the menu related things. `Menu` sounds like a reasonable name, doesn't it?
```php ```php
<?php <?php
@ -257,4 +257,4 @@ class FrontendTwigRenderer implements FrontendRenderer
Everything still working? Awesome. Commit everything and move on to the next chapter. Everything still working? Awesome. Commit everything and move on to the next chapter.
[<< previous](10-dynamic-pages.md) | [next >>](12-frontend.md) [<< previous](10-dynamic-pages.md) | [next >>](12-frontend.md)