@@ -581,7 +581,7 @@ nice way to group related pages. The controller functions are also sometimes cal
581581The two controllers (or actions) are still lightweight. Each uses the
582582:doc: `Doctrine ORM library </doctrine >` to retrieve objects from the
583583database and the Templating component to render a template and return a
584- ``Response `` object. Thelist ``list.php `` template is now quite a bit simpler:
584+ ``Response `` object. The ``list.php `` template is now quite a bit simpler:
585585
586586..code-block ::html+php
587587
@@ -624,7 +624,7 @@ The ``layout.php`` file is nearly identical:
624624
625625..note ::
626626
627- Theshow ``show.php `` template is left as an exercise: updating it should be
627+ The ``show.php `` template is left as an exercise: updating it should be
628628 really similar to updating the ``list.php `` template.
629629
630630When Symfony's engine (called the Kernel) boots up, it needs a map so
@@ -674,10 +674,10 @@ It's a beautiful thing.
674674Better Templates
675675~~~~~~~~~~~~~~~~
676676
677- If you choose to use it, Symfony comesstandard with a templating engine
677+ If you choose to use it, Symfony comes with a templating engine
678678called `Twig `_ that makes templates faster to write and easier to read.
679- It means that the sample application could contain even less code!Take,
680- for example, rewriting ``list.html.php `` template in Twig would look like
679+ It means that the sample application could contain even less code!For
680+ example, rewriting the ``list.html.php `` template in Twig would look like
681681this:
682682
683683..code-block ::html+twig
@@ -700,7 +700,7 @@ this:
700700 </ul>
701701 {% endblock %}
702702
703- And rewriting ``layout.html.php `` template in Twig would look like this:
703+ And rewritingthe ``layout.html.php `` template in Twig would look like this:
704704
705705..code-block ::html+twig
706706
@@ -722,9 +722,9 @@ be discussed. For more information, see the :doc:`templating article </templatin
722722Where Symfony Delivers
723723----------------------
724724
725- In the rest of documentation articles, you'll learn more about how each piece of
726- Symfony works and how you can organize your project. For now, celebrateat how
727- migrating the blog from flat PHP to Symfony has improved life:
725+ In the rest ofthe documentation articles, you'll learn more about how each piece of
726+ Symfony works and how you can organize your project. For now, celebrate how
727+ migrating the blog from flat PHP to Symfony has improvedyour life:
728728
729729* Your application now has **clear and consistently organized code ** (though
730730 Symfony doesn't force you into this). This promotes **reusability ** and