Skip to content

Fix typos in http fundamentals.rst #3080

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 2, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions book/http_fundamentals.rst
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ specific PHP method ``contactAction`` inside a class called ``MainController``::

In this very simple example, the controller simply creates a
:class:`Symfony\\Component\\HttpFoundation\\Response` object with the HTML
``<h1>Contact us! </h1>``. In the :doc:`controller chapter </book/controller>`,
``<h1>Contact us!</h1>``. In the :doc:`controller chapter </book/controller>`,
you'll learn how a controller can render templates, allowing your "presentation"
code (i.e. anything that actually writes out HTML) to live in a separate
template file. This frees up the controller to worry only about the hard
Expand Down Expand Up @@ -524,14 +524,14 @@ regardless of how your project is developed. To name a few:
* `Form`_ - A full-featured and flexible framework for creating forms and
handling form submissions;

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

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

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

Expand Down