File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ that controller.
203203

204204
The controller - ``AcmeHelloBundle:Hello:index`` is the *logical* name of
205205
the controller, and it maps to the ``indexAction`` method of a PHP class
206-
called ``Acme\HelloBundle\Controller\Hello``. Start by creating this file
206+
called ``Acme\HelloBundle\Controller\HelloController``. Start by creating this file
207207
inside your ``AcmeHelloBundle``::
208208

209209
// src/Acme/HelloBundle/Controller/HelloController.php
@@ -274,7 +274,7 @@ An optional, but common, third step in the process is to create a template.
274274
Optional Step 3: Create the Template
275275
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
276276

277-
Templates allows you to move all of the presentation (e.g. HTML code) into
277+
Templates allow you to move all of the presentation (e.g. HTML code) into
278278
a separate file and reuse different portions of the page layout. Instead
279279
of writing the HTML inside the controller, render a template instead:
280280

@@ -993,4 +993,4 @@ to rapidly develop applications.
993993
.. _`third-party bundles`: http://symfony2bundles.org/
994994
.. _`Symfony Standard Edition`: http://symfony.com/download
995995
.. _`Apache's DirectoryIndex documentation`: http://httpd.apache.org/docs/2.0/mod/mod_dir.html
996-
.. _`Nginx HttpCoreModule location documentation`: http://wiki.nginx.org/HttpCoreModule#location
996+
.. _`Nginx HttpCoreModule location documentation`: http://wiki.nginx.org/HttpCoreModule#location

0 commit comments

Comments
 (0)