minor #29596 Don't use he in docs when its not needed (dawehner)

This PR was submitted for the master branch but it was merged into the 3.4 branch instead (closes #29596).

Discussion
----------

Don't use he in docs when its not needed

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | yes
| New feature?  |no
| BC breaks?    | no
| Tests pass?   | yes
| License       | MIT

The documentation talks about a man, an event subscriber clearly isn't one

Similar to https://github.com/symfony/symfony/pull/29594 but in more places

Commits
-------

8caab72f5e Don't use he in docs when its not needed
This commit is contained in:
Nicolas Grekas 2018-12-13 17:47:15 +01:00
commit c718a8ef30
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';