diff --git a/form/events.rst b/form/events.rst index 4c716ed70c7..15a05c1a1b6 100644 --- a/form/events.rst +++ b/form/events.rst @@ -292,7 +292,7 @@ Creating and binding an event listener to the form is very easy:: return; } - // Check whether the user has chosen to display his email or not. + // Check whether the user has chosen to display their email or not. // If the data was submitted previously, the additional value that is // included in the request variables needs to be removed. if (true === $user['show_email']) { @@ -372,7 +372,7 @@ Event subscribers have different uses: $form = $event->getForm(); // Check whether the user from the initial data has chosen to - // display his email or not. + // display their email or not. if (true === $user->isShowEmail()) { $form->add('email', 'email'); } @@ -387,7 +387,7 @@ Event subscribers have different uses: return; } - // Check whether the user has chosen to display his email or not. + // Check whether the user has chosen to display their email or not. // If the data was submitted previously, the additional value that // is included in the request variables needs to be removed. if (true === $user['show_email']) {