diff --git a/src/Symfony/Bundle/FrameworkBundle/Controller/ControllerNameParser.php b/src/Symfony/Bundle/FrameworkBundle/Controller/ControllerNameParser.php index c68c0ef87c..3b472b80a5 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Controller/ControllerNameParser.php +++ b/src/Symfony/Bundle/FrameworkBundle/Controller/ControllerNameParser.php @@ -43,7 +43,7 @@ class ControllerNameParser * * @param string $controller A short notation controller (a:b:c) * - * @param string A controler (class::method) + * @param string A controller (class::method) */ public function parse($controller) { diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php index 1d8dac0b97..4bed906a83 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php @@ -365,7 +365,7 @@ class FrameworkExtension extends Extension $container->setParameter('templating.engines', $config['engines']); $engines = array_map(function($engine) { return new Reference('templating.engine.'.$engine); }, $config['engines']); - // Use a deligation unless only a single engine was registered + // Use a delegation unless only a single engine was registered if (1 === count($engines)) { $container->setAlias('templating', (string) reset($engines)); } else { diff --git a/src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php b/src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php index 2923903658..5710ec89bb 100644 --- a/src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php +++ b/src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php @@ -41,7 +41,7 @@ abstract class HttpCache extends BaseHttpCache /** * Forwards the Request to the backend and returns the Response. * - * @param Requset $request A Request instance + * @param Request $request A Request instance * @param Boolean $raw Whether to catch exceptions or not * @param Response $response A Response instance (the stale entry if present, null otherwise) *