Skip to content

Change some docs to be gender-neutral #8645

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 13, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions form/events.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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']) {
Expand Down Expand Up @@ -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');
}
Expand All @@ -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']) {
Expand Down