Skip to content

Commit 3152cba

Browse files
committed
Change some docs to be gender-neutral
1 parent e00a3a2 commit 3152cba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

form/events.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ Creating and binding an event listener to the form is very easy::
292292
return;
293293
}
294294

295-
// Check whether the user has chosen to display his email or not.
295+
// Check whether the user has chosen to display their email or not.
296296
// If the data was submitted previously, the additional value that is
297297
// included in the request variables needs to be removed.
298298
if (true === $user['show_email']) {
@@ -372,7 +372,7 @@ Event subscribers have different uses:
372372
$form = $event->getForm();
373373
374374
// Check whether the user from the initial data has chosen to
375-
// display his email or not.
375+
// display their email or not.
376376
if (true === $user->isShowEmail()) {
377377
$form->add('email', 'email');
378378
}
@@ -387,7 +387,7 @@ Event subscribers have different uses:
387387
return;
388388
}
389389
390-
// Check whether the user has chosen to display his email or not.
390+
// Check whether the user has chosen to display their email or not.
391391
// If the data was submitted previously, the additional value that
392392
// is included in the request variables needs to be removed.
393393
if (true === $user['show_email']) {

0 commit comments

Comments
 (0)