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::
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']) {
You can’t perform that action at this time.
0 commit comments