From ddd67f2f7d964f26d5bc9cd4f13a6b9f6228853f Mon Sep 17 00:00:00 2001
From: Philipp Rieber
Date: Thu, 21 Nov 2013 07:03:17 +0100
Subject: [PATCH] 2.3: Minor fixes
---
cookbook/doctrine/mapping_model_classes.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cookbook/doctrine/mapping_model_classes.rst b/cookbook/doctrine/mapping_model_classes.rst
index 619c5da835f..630819c9928 100644
--- a/cookbook/doctrine/mapping_model_classes.rst
+++ b/cookbook/doctrine/mapping_model_classes.rst
@@ -107,7 +107,7 @@ Annotations, XML, Yaml, PHP and StaticPHP. The arguments are:
to specify the name of the default manager. The first parameter found is
used and the mappings are registered with that manager;
* an optional container parameter name that will be used by the compiler
- pass to determine if this Doctrine type is used at all (this is relevant if
+ pass to determine if this Doctrine type is used at all. This is relevant if
your user has more than one type of Doctrine bundle installed, but your
bundle is only used with one type of Doctrine.
@@ -141,7 +141,7 @@ Annotations, XML, Yaml, PHP and StaticPHP. The arguments are:
Now place your mapping file into ``/Resources/config/doctrine-base`` with the
fully qualified class name, separated by ``.`` instead of ``\``, for example
``Other.Namespace.Model.Name.orm.xml``. You may not mix the two as otherwise
- the SymfonyFileLocator will get confused.
+ the ``SymfonyFileLocator`` will get confused.
Adjust accordingly for the other Doctrine implementations.