8000 Blimey! Just a bunch o' little fixes. · merk/symfony-docs@b699043 · GitHub
[go: up one dir, main page]

Skip to content

Commit b699043

Browse files
committed
Blimey! Just a bunch o' little fixes.
1 parent 9c0e585 commit b699043

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

cookbook/bundles/best_practices.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ All classes and files must follow the Symfony2 coding :doc:`standards
138138
Some classes should be seen as facades and should be as short as possible, like
139139
Commands, Helpers, Listeners, and Controllers.
140140

141-
Classes that connects to the Event Dispatcher should be suffixed with
141+
Classes that connect to the Event Dispatcher should be suffixed with
142142
``Listener``.
143143

144144
Exceptions classes should be stored in an ``Exception`` sub-namespace.

cookbook/bundles/extension.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ configuration based on some of the input values. For example, suppose you
318318
have a service who's first argument is some string "type" that it will use
319319
internally. You'd like this to be easily configured by the bundle user, so
320320
in your service configuration file (e.g. ``services.xml``), you define this
321-
service and use a blank parameter - ``acme_hello.my_service_options`` - as
321+
service and use a blank parameter - ``acme_hello.my_service_type`` - as
322322
its first argument:
323323

324324
.. code-block:: xml

cookbook/form/simple_signup_form_with_mongodb.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ controller for displaying the registration form::
234234
}
235235
}
236236

237-
and it's template:
237+
and its template:
238238

239239
.. code-block:: html+jinja
240240

@@ -270,4 +270,4 @@ the validation and saves the data into MongoDB::
270270
}
271271

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

0 commit comments

Comments
 (0)
0