8000 Don't use he in docs when its not needed · symfony/symfony@8caab72 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8caab72

Browse files
dawehnernicolas-grekas
authored andcommitted
Don't use he in docs when its not needed
1 parent 718d019 commit 8caab72

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Component/EventDispatcher/EventDispatcherInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function addListener($eventName, $listener, $priority = 0);
4646
/**
4747
* Adds an event subscriber.
4848
*
49-
* The subscriber is asked for all the events he is
49+
* The subscriber is asked for all the events it is
5050
* interested in and added as a listener for these events.
5151
*/
5252
public function addSubscriber(EventSubscriberInterface $subscriber);

src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ private function addSubForm(FormBuilderInterface $builder, $name, ChoiceView $ch
396396
if ($options['multiple']) {
397397
$choiceType = __NAMESPACE__.'\CheckboxType';
398398
// The user can check 0 or more checkboxes. If required
399-
// is true, he is required to check all of them.
399+
// is true, they are required to check all of them.
400400
$choiceOpts['required'] = false;
401401
} else {
402402
$choiceType = __NAMESPACE__.'\RadioType';

0 commit comments

Comments
 (0)
0