Skip to content

Commit

Permalink
Fix: Use neutral pronouns
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Mar 4, 2020
1 parent 9273057 commit d534f7f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/en/cookbook/validation-of-entities.rst
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/en/reference/dql-doctrine-query-language.rst
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/en/reference/unitofwork-associations.rst
Expand Up @@ -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.
Expand Down

0 comments on commit d534f7f

Please sign in to comment.