8000 minor #29596 Don't use he in docs when its not needed (dawehner) · symfony/symfony@c718a8e · GitHub
[go: up one dir, main page]

Skip to content

Commit c718a8e

Browse files
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 #29594 but in more places Commits ------- 8caab72 Don't use he in docs when its not needed
2 parents 718d019 + 8caab72 commit c718a8e

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