From 789ca37526b839860e60b0147a8c654ba67d9af1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Wed, 4 Mar 2020 22:17:53 +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 344be990f81..15ecb66a206 100644 --- a/docs/en/cookbook/validation-of-entities.rst +++ b/docs/en/cookbook/validation-of-entities.rst @@ -24,8 +24,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 577a02a15d0..bd785b49006 100644 --- a/docs/en/reference/dql-doctrine-query-language.rst +++ b/docs/en/reference/dql-doctrine-query-language.rst @@ -254,7 +254,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 32bc846bae6..0ce6d1383ef 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.