Skip to content

Commit c8e4a78

Browse files
committed
minor #40180 Fix: Article (localheinz)
This PR was merged into the 4.4 branch. Discussion ---------- Fix: Article | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | n/a | License | MIT | Doc PR | n/a This pull request * [x] fixes usages of the indefinite article `a` where `an` should be used instead Commits ------- 34b320ba97 Fix: Article
2 parents ed15cbf + db67824 commit c8e4a78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DependencyInjection/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1431,7 +1431,7 @@ private function addHttpClientSection(ArrayNodeDefinition $rootNode)
14311431
->info('A network interface name, IP address, a host name or a UNIX socket to bind to.')
14321432
->end()
14331433
->booleanNode('verify_peer')
1434-
->info('Indicates if the peer should be verified in a SSL/TLS context.')
1434+
->info('Indicates if the peer should be verified in an SSL/TLS context.')
14351435
->end()
14361436
->booleanNode('verify_host')
14371437
->info('Indicates if the host should exist as a certificate common name.')
@@ -1570,7 +1570,7 @@ private function addHttpClientSection(ArrayNodeDefinition $rootNode)
15701570
->info('A network interface name, IP address, a host name or a UNIX socket to bind to.')
15711571
->end()
15721572
->booleanNode('verify_peer')
1573-
->info('Indicates if the peer should be verified in a SSL/TLS context.')
1573+
->info('Indicates if the peer should be verified in an SSL/TLS context.')
15741574
->end()
15751575
->booleanNode('verify_host')
15761576
->info('Indicates if the host should exist as a certificate common name.')

0 commit comments

Comments
 (0)