From d534f7f2904dfbbc9133ed80614717bc0c616982 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 5 Mar 2020 00:34:48 +0100 Subject: [PATCH] Fix: Use neutral pronouns --- docs/en/cookbook/validation-of-entities.rst | 4 ++-- docs/en/reference/dql-doctrine-query-language.rst | 2 +- docs/en/reference/unitofwork-associations.rst | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/en/cookbook/validation-of-entities.rst b/docs/en/cookbook/validation-of-entities.rst index dd10b8b9afa..7560a65d6e9 100644 --- a/docs/en/cookbook/validation-of-entities.rst +++ b/docs/en/cookbook/validation-of-entities.rst @@ -25,8 +25,8 @@ the additional benefit of being able to re-use your validation in any other part of your domain. Say we have an ``Order`` with several ``OrderLine`` instances. We -never want to allow any customer to order for a larger sum than he -is allowed to: +never want to allow any customer to order for a larger sum than they +are allowed to: .. code-block:: php diff --git a/docs/en/reference/dql-doctrine-query-language.rst b/docs/en/reference/dql-doctrine-query-language.rst index 5a38101be93..de3a9da809a 100644 --- a/docs/en/reference/dql-doctrine-query-language.rst +++ b/docs/en/reference/dql-doctrine-query-language.rst @@ -250,7 +250,7 @@ Retrieve the Username and Name of a CmsUser: $users = $query->getResult(); // array of CmsUser username and name values echo $users[0]['username']; -Retrieve a ForumUser and his single associated entity: +Retrieve a ForumUser and its single associated entity: .. code-block:: php diff --git a/docs/en/reference/unitofwork-associations.rst b/docs/en/reference/unitofwork-associations.rst index c9ccf73fc8a..cade197cdc7 100644 --- a/docs/en/reference/unitofwork-associations.rst +++ b/docs/en/reference/unitofwork-associations.rst @@ -39,7 +39,7 @@ side of the association and these 2 references both represent the same association but can change independently of one another. Of course, in a correct application the semantics of the bidirectional association are properly maintained by the application developer -(that's his responsibility). Doctrine needs to know which of these +(that's their responsibility). Doctrine needs to know which of these two in-memory references is the one that should be persisted and which not. This is what the owning/inverse concept is mainly used for.