Skip to content

Commit f4fdda0

Browse files
committed
Merge pull request #246 from pborreli/fixed-typos.
Fixed typos
2 parents 9f34dff + bf59a37 commit f4fdda0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

book/doctrine/orm.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ can control. The following configuration options exist for a mapping:
291291
- ``dir`` Path to the mapping or entity files (depending on the driver). If
292292
this path is relative it is assumed to be relative to the bundle root. This
293293
only works if the name of your mapping is a bundle name. If you want to use
294-
this option to specifiy absolute paths you should prefix the path with the
294+
this option to specify absolute paths you should prefix the path with the
295295
kernel parameters that exist in the DIC (for example %kernel.root_dir%).
296296
- ``prefix`` A common namespace prefix that all entities of this mapping
297297
share. This prefix should never conflict with prefixes of other defined

book/internals/event_dispatcher.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ define and document your event:
228228
* The onStoreOrder event is thrown each time an order is created
229229
* in the system.
230230
*
231-
* The event listener recieves an Acme\StoreBundle\Event\FilterOrderEvent
231+
* The event listener receives an Acme\StoreBundle\Event\FilterOrderEvent
232232
* instance.
233233
*
234234
* @var string

cookbook/doctrine/reverse_engineering.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ tables fields.
6060

6161
.. code-block:: bash
6262
63-
php app/console doctrine:mapping:convert xml ./src/Acme/BlogBundle/Resources/config/doctrine/metada/orm --from-database --force
63+
php app/console doctrine:mapping:convert xml ./src/Acme/BlogBundle/Resources/config/doctrine/metadata/orm --from-database --force
6464
6565
This command line tool asks Doctrine to introspect the database and generate
66-
the XML metadata files under the ``src/Acme/BlogBundle/Resources/config/doctrine/metada/orm``
66+
the XML metadata files under the ``src/Acme/BlogBundle/Resources/config/doctrine/metadata/orm``
6767
folder of your bundle.
6868

6969
.. tip::

cookbook/logging/monolog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ your controller::
3434

3535
$logger = $this->get('logger');
3636
$logger->info('We just go the logger');
37-
$logger->err('An error occured');
37+
$logger->err('An error occurred');
3838

3939
.. tip::
4040

0 commit comments

Comments
 (0)