Skip to content

Fixed typos #4475

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

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions best_practices/business-logic.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand All @@ -33,7 +33,7 @@ and put things there:

.. code-block:: text

symfoy2-project/
symfony2-project/
├─ app/
├─ src/
│ ├─ Acme/
Expand Down
2 changes: 1 addition & 1 deletion best_practices/web-assets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion quick_tour/the_controller.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down