From 99de9977eb39825d0badafa0d0501da14c811e81 Mon Sep 17 00:00:00 2001 From: Pascal Borreli Date: Sun, 16 Nov 2014 18:36:56 +0000 Subject: [PATCH] Fixed typos --- best_practices/business-logic.rst | 4 ++-- best_practices/web-assets.rst | 2 +- quick_tour/the_controller.rst | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/best_practices/business-logic.rst b/best_practices/business-logic.rst index b77cbfab1d5..87592834191 100644 --- a/best_practices/business-logic.rst +++ b/best_practices/business-logic.rst @@ -15,7 +15,7 @@ Inside here, you can create whatever directories you want to organize things: .. code-block:: text - symfoy2-project/ + symfony2-project/ ├─ app/ ├─ src/ │ └─ AppBundle/ @@ -33,7 +33,7 @@ and put things there: .. code-block:: text - symfoy2-project/ + symfony2-project/ ├─ app/ ├─ src/ │ ├─ Acme/ diff --git a/best_practices/web-assets.rst b/best_practices/web-assets.rst index e77e3db7721..862e60987a5 100644 --- a/best_practices/web-assets.rst +++ b/best_practices/web-assets.rst @@ -50,7 +50,7 @@ tools like GruntJS. comfortable with frontend tools like GruntJS. `Assetic`_ is an asset manager capable of compiling assets developed with -a lot of different frontend technologies like LESS, Sass and CoffeScript. +a lot of different frontend technologies like LESS, Sass and CoffeeScript. Combining all your assets with Assetic is a matter of wrapping all the assets with a single Twig tag: diff --git a/quick_tour/the_controller.rst b/quick_tour/the_controller.rst index e669bb734e5..e6031ec8494 100644 --- a/quick_tour/the_controller.rst +++ b/quick_tour/the_controller.rst @@ -138,7 +138,7 @@ new ``hello.xml.twig`` template: Now, when you browse to ``http://localhost:8000/hello/fabien``, you'll see the regular HTML page because ``html`` is the default format. When visiting ``http://localhost:8000/hello/fabien.html`` you'll get again the HTML page, this -time because you explicitely asked for the ``html`` format. Lastly, if you visit +time because you explicitly asked for the ``html`` format. Lastly, if you visit ``http://localhost:8000/hello/fabien.xml`` you'll see the new XML template rendered in your browser.