@@ -387,7 +387,7 @@ By default, templates can live in two different locations:
387
387
third party bundle templates (see :ref: `overriding-bundle-templates `);
388
388
389
389
* ``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
391
391
plan to share your bundle, you should put the templates in the bundle instead
392
392
of the ``app/ `` directory.
393
393
@@ -435,8 +435,8 @@ directory. This gives the power to override templates from any vendor bundle.
435
435
436
436
.. tip ::
437
437
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 `.
440
440
441
441
Template Suffix
442
442
~~~~~~~~~~~~~~~
@@ -1353,7 +1353,7 @@ covered:
1353
1353
{% endblock %}
1354
1354
1355
1355
Notice 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
1357
1357
the common three-level inheritance model.
1358
1358
1359
1359
When building your application, you may choose to follow this method or simply
@@ -1466,7 +1466,7 @@ Debugging
1466
1466
1467
1467
When using PHP, you can use :phpfunction: `var_dump ` if you need to quickly find
1468
1468
the 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
1470
1470
extension.
1471
1471
1472
1472
Template parameters can then be dumped using the ``dump `` function:
0 commit comments