@@ -479,7 +479,7 @@ specific PHP method ``contactAction`` inside a class called ``MainController``::
479
479
480
480
In this very simple example, the controller simply creates a
481
481
:class: `Symfony\\ Component\\ HttpFoundation\\ Response ` object with the HTML
482
- ``<h1>Contact us! </h1> ``. In the :doc: `controller chapter </book/controller >`,
482
+ ``<h1>Contact us!</h1> ``. In the :doc: `controller chapter </book/controller >`,
483
483
you'll learn how a controller can render templates, allowing your "presentation"
484
484
code (i.e. anything that actually writes out HTML) to live in a separate
485
485
template file. This frees up the controller to worry only about the hard
@@ -524,14 +524,14 @@ regardless of how your project is developed. To name a few:
524
524
* `Form `_ - A full-featured and flexible framework for creating forms and
525
525
handling form submissions;
526
526
527
- * `Validator `_ A system for creating rules about data and then validating
527
+ * `Validator `_ - A system for creating rules about data and then validating
528
528
whether or not user-submitted data follows those rules;
529
529
530
- * :doc: `ClassLoader </components/class_loader/introduction >` An autoloading library that allows
530
+ * :doc: `ClassLoader </components/class_loader/introduction >` - An autoloading library that allows
531
531
PHP classes to be used without needing to manually ``require `` the files
532
532
containing those classes;
533
533
534
- * :doc: `Templating </components/templating/introduction >` A toolkit for rendering
534
+ * :doc: `Templating </components/templating/introduction >` - A toolkit for rendering
535
535
templates, handling template inheritance (i.e. a template is decorated with
536
536
a layout) and performing other common template tasks;
537
537
0 commit comments