8000 [DependencyInjection] fixed typo · symfony/symfony@408d992 · GitHub
[go: up one dir, main page]

Skip to content

Commit 408d992

Browse files
committed
[DependencyInjection] fixed typo
1 parent e9f67a7 commit 408d992

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/DependencyInjection/Container.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ public function get($id, $invalidBehavior = self::EXCEPTION_ON_INVALID_REFERENCE
271271
// Attempt to retrieve the service by checking first aliases then
272272
// available services. Service IDs are case insensitive, however since
273273
// this method can be called thousands of times during a request, avoid
274-
// calling strotolower() unless necessary.
274+
// calling strtolower() unless necessary.
275275
foreach (array(false, true) as $strtolower) {
276276
if ($strtolower) {
277277
$id = strtolower($id);

0 commit comments

Comments
 (0)
0