File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -292,7 +292,7 @@ Creating and binding an event listener to the form is very easy::
292
292
return;
293
293
}
294
294
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.
296
296
// If the data was submitted previously, the additional value that is
297
297
// included in the request variables needs to be removed.
298
298
if (true === $user['show_email']) {
@@ -372,7 +372,7 @@ Event subscribers have different uses:
372
372
$form = $event->getForm();
373
373
374
374
// Check whether the user from the initial data has chosen to
375
- // display his email or not.
375
+ // display their email or not.
376
376
if (true === $user->isShowEmail()) {
377
377
$form->add('email', 'email');
378
378
}
@@ -387,7 +387,7 @@ Event subscribers have different uses:
387
387
return;
388
388
}
389
389
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.
391
391
// If the data was submitted previously, the additional value that
392
392
// is included in the request variables needs to be removed.
393
393
if (true === $user['show_email']) {
You can’t perform that action at this time.
0 commit comments