From 3152cba19a1d7d0031cb5cd990753702fee02d03 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Mon, 13 Nov 2017 20:56:55 +0100 Subject: [PATCH] Change some docs to be gender-neutral --- form/events.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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']) {