From 408d992a3f2d2bc45572514709972f5155f36595 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 23 Dec 2013 10:20:48 +0100 Subject: [PATCH] [DependencyInjection] fixed typo --- src/Symfony/Component/DependencyInjection/Container.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/DependencyInjection/Container.php b/src/Symfony/Component/DependencyInjection/Container.php index 5becc3cf73..ecf35ee4a0 100644 --- a/src/Symfony/Component/DependencyInjection/Container.php +++ b/src/Symfony/Component/DependencyInjection/Container.php @@ -271,7 +271,7 @@ class Container implements IntrospectableContainerInterface // Attempt to retrieve the service by checking first aliases then // available services. Service IDs are case insensitive, however since // this method can be called thousands of times during a request, avoid - // calling strotolower() unless necessary. + // calling strtolower() unless necessary. foreach (array(false, true) as $strtolower) { if ($strtolower) { $id = strtolower($id);