@@ -387,7 +387,7 @@ Template Naming and Locations
387387By default, templates can live in two different locations:
388388
389389``app/Resources/views/ ``
390- Theapplications ``views `` directory can contain application-wide base templates
390+ Theapplication's ``views `` directory can contain application-wide base templates
391391 (i.e. your application's layouts and templates of the application bundle) as
392392 well as templates that override third party bundle templates
393393 (see:ref: `overriding-bundle-templates `).
@@ -625,7 +625,7 @@ articles::
625625 }
626626 }
627627
628- The ``recentList `` template is perfectly straightforward:
628+ The ``recent_list `` template is perfectly straightforward:
629629
630630..configuration-block ::
631631
@@ -990,7 +990,7 @@ route:
990990
991991 In this case, you need to specify both the route name (``article_show ``) and
992992a value for the ``{slug} `` parameter. Using this route, revisit the
993- ``recentList `` template from the previous section and link to the articles
993+ ``recent_list `` template from the previous section and link to the articles
994994correctly:
995995
996996..configuration-block ::
@@ -1074,8 +1074,8 @@ being used and generating the correct paths accordingly.
10741074
10751075Additionally, if you use the ``asset `` function, Symfony can automatically
10761076append a query string to your asset, in order to guarantee that updated static
1077- assets won't becached when deployed. For example, ``/images/logo.png `` might
1078- look like ``/images/logo.png?v2 ``. For more information, see the:ref: `ref -framework-assets-version `
1077+ assets won't beloaded from cache after being deployed. For example, ``/images/logo.png `` might
1078+ look like ``/images/logo.png?v2 ``. For more information, see the:ref: `reference -framework-assets-version `
10791079configuration option.
10801080
10811081..index ::