@@ -387,7 +387,7 @@ By default, templates can live in two different locations:
387387 third party bundle templates (see :ref: `overriding-bundle-templates `);
388388
389389* ``path/to/bundle/Resources/views/ ``: Each third party bundle houses its
390- templates in its ``Resources/views `` directory (and subdirectories). When you
390+ templates in its ``Resources/views/ `` directory (and subdirectories). When you
391391 plan to share your bundle, you should put the templates in the bundle instead
392392 of the ``app/ `` directory.
393393
@@ -435,8 +435,8 @@ directory. This gives the power to override templates from any vendor bundle.
435435
436436.. tip ::
437437
438- Hopefully the template naming syntax looks familiar - it's similair to the
439- naming convention used to refer to :ref: `controller-string-syntax `.
438+ Hopefully the template naming syntax looks familiar - it's similar to
439+ the naming convention used to refer to :ref: `controller-string-syntax `.
440440
441441Template Suffix
442442~~~~~~~~~~~~~~~
@@ -1353,7 +1353,7 @@ covered:
13531353 {% endblock %}
13541354
13551355Notice that this template extends the section template (``Blog/layout.html.twig ``)
1356- which in- turn extends the base application layout (``base.html.twig ``). This is
1356+ which in turn extends the base application layout (``base.html.twig ``). This is
13571357the common three-level inheritance model.
13581358
13591359When building your application, you may choose to follow this method or simply
@@ -1466,7 +1466,7 @@ Debugging
14661466
14671467When using PHP, you can use :phpfunction: `var_dump ` if you need to quickly find
14681468the value of a variable passed. This is useful, for example, inside your
1469- controller. The same can be achieved when using Twig thanks to the debug
1469+ controller. The same can be achieved when using Twig thanks to the Debug
14701470extension.
14711471
14721472Template parameters can then be dumped using the ``dump `` function:
0 commit comments