Skip to content

Commit 11270d2

Browse files
committed
Merge pull request #3080 from vkhramtsov/fix_typos_in_http_fundamentals.rst
Fix typos in http fundamentals.rst
2 parents 6493eba + 41945d8 commit 11270d2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

book/http_fundamentals.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ specific PHP method ``contactAction`` inside a class called ``MainController``::
479479

480480
In this very simple example, the controller simply creates a
481481
: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>`,
483483
you'll learn how a controller can render templates, allowing your "presentation"
484484
code (i.e. anything that actually writes out HTML) to live in a separate
485485
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:
524524
* `Form`_ - A full-featured and flexible framework for creating forms and
525525
handling form submissions;
526526

527-
* `Validator`_ A system for creating rules about data and then validating
527+
* `Validator`_ - A system for creating rules about data and then validating
528528
whether or not user-submitted data follows those rules;
529529

530-
* :doc:`ClassLoader </components/class_loader/introduction>` An autoloading library that allows
530+
* :doc:`ClassLoader </components/class_loader/introduction>` - An autoloading library that allows
531531
PHP classes to be used without needing to manually ``require`` the files
532532
containing those classes;
533533

534-
* :doc:`Templating </components/templating/introduction>` A toolkit for rendering
534+
* :doc:`Templating </components/templating/introduction>` - A toolkit for rendering
535535
templates, handling template inheritance (i.e. a template is decorated with
536536
a layout) and performing other common template tasks;
537537

0 commit comments

Comments
 (0)