Skip to content

Commit eb70040

Browse files
authored
Fix: Use neutral pronouns (#8059)
1 parent 9273057 commit eb70040

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

docs/en/cookbook/entities-in-session.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Serializing entity into the session
4444
-----------------------------------
4545

4646
Entities that are serialized into the session normally contain references to
47-
other entities as well. Think of the user entity has a reference to his
47+
other entities as well. Think of the user entity has a reference to their
4848
articles, groups, photos or many other different entities. If you serialize
4949
this object into the session then you don't want to serialize the related
5050
entities as well. This is why you should call ``EntityManager#detach()`` on this

docs/en/cookbook/validation-of-entities.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ the additional benefit of being able to re-use your validation in
2525
any other part of your domain.
2626

2727
Say we have an ``Order`` with several ``OrderLine`` instances. We
28-
never want to allow any customer to order for a larger sum than he
29-
is allowed to:
28+
never want to allow any customer to order for a larger sum than they
29+
are allowed to:
3030

3131
.. code-block:: php
3232

docs/en/reference/dql-doctrine-query-language.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ Retrieve the Username and Name of a CmsUser:
250250
$users = $query->getResult(); // array of CmsUser username and name values
251251
echo $users[0]['username'];
252252
253-
Retrieve a ForumUser and his single associated entity:
253+
Retrieve a ForumUser and its single associated entity:
254254

255255
.. code-block:: php
256256
@@ -259,7 +259,7 @@ Retrieve a ForumUser and his single associated entity:
259259
$users = $query->getResult(); // array of ForumUser objects with the avatar association loaded
260260
echo get_class($users[0]->getAvatar());
261261
262-
Retrieve a CmsUser and fetch join all the phonenumbers he has:
262+
Retrieve a CmsUser and fetch join all the phonenumbers it has:
263263

264264
.. code-block:: php
265265

docs/en/reference/unitofwork-associations.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ side of the association and these 2 references both represent the
3939
same association but can change independently of one another. Of
4040
course, in a correct application the semantics of the bidirectional
4141
association are properly maintained by the application developer
42-
(that's his responsibility). Doctrine needs to know which of these
42+
(that's their responsibility). Doctrine needs to know which of these
4343
two in-memory references is the one that should be persisted and
4444
which not. This is what the owning/inverse concept is mainly used
4545
for.

docs/en/reference/unitofwork.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,8 @@ Hydration
148148
~~~~~~~~~
149149

150150
Responsible for creating a final result from a raw database statement and a
151-
result-set mapping object. The developer can choose which kind of result he
152-
wishes to be hydrated. Default result-types include:
151+
result-set mapping object. The developer can choose which kind of result they
152+
wish to be hydrated. Default result-types include:
153153

154154
- SQL to Entities
155155
- SQL to structured Arrays

docs/en/tutorials/getting-started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ requirements:
7272
- Bug reporters and engineers are both Users of the system.
7373
- A User can create new Bugs.
7474
- The assigned engineer can close a Bug.
75-
- A User can see all his reported or assigned Bugs.
75+
- A User can see all their reported or assigned Bugs.
7676
- Bugs can be paginated through a list-view.
7777

7878
Project Setup

0 commit comments

Comments
 (0)