Don't use he in docs when its not needed

This commit is contained in:
Daniel Wehner 2018-12-13 16:34:04 +00:00 committed by Nicolas Grekas
parent 718d01932f
commit 8caab72f5e
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ interface EventDispatcherInterface
/**
* Adds an event subscriber.
*
* The subscriber is asked for all the events he is
* The subscriber is asked for all the events it is
* interested in and added as a listener for these events.
*/
public function addSubscriber(EventSubscriberInterface $subscriber);

View File

@ -396,7 +396,7 @@ class ChoiceType extends AbstractType
if ($options['multiple']) {
$choiceType = __NAMESPACE__.'\CheckboxType';
// The user can check 0 or more checkboxes. If required
// is true, he is required to check all of them.
// is true, they are required to check all of them.
$choiceOpts['required'] = false;
} else {
$choiceType = __NAMESPACE__.'\RadioType';