Skip to content
Merged
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
2 changes: 1 addition & 1 deletion cookbook/bundles/best_practices.rst
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ All classes and files must follow the Symfony2 coding :doc:`standards
Some classes should be seen as facades and should be as short as possible, like
Commands, Helpers, Listeners, and Controllers.

Classes that connects to the Event Dispatcher should be suffixed with
Classes that connect to the Event Dispatcher should be suffixed with
``Listener``.

Exceptions classes should be stored in an ``Exception`` sub-namespace.
Expand Down
2 changes: 1 addition & 1 deletion cookbook/bundles/extension.rst
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ configuration based on some of the input values. For example, suppose you
have a service who's first argument is some string "type" that it will use
internally. You'd like this to be easily configured by the bundle user, so
in your service configuration file (e.g. ``services.xml``), you define this
service and use a blank parameter - ``acme_hello.my_service_options`` - as
service and use a blank parameter - ``acme_hello.my_service_type`` - as
its first argument:

.. code-block:: xml
Expand Down
4 changes: 2 additions & 2 deletions cookbook/form/simple_signup_form_with_mongodb.rst
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ controller for displaying the registration form::
}
}

and it's template:
and its template:

.. code-block:: html+jinja

Expand Down Expand Up @@ -270,4 +270,4 @@ the validation and saves the data into MongoDB::
}

That's it! Your form now validates, and allows you to save the ``User``
object to MongoDB.
object to MongoDB.