From 9ab5e4f5c720e7979aa66c3eca29772f67c102aa Mon Sep 17 00:00:00 2001 From: Tobias Schultze Date: Fri, 14 Dec 2012 23:50:21 +0100 Subject: [PATCH] fix typos in PhpMatcherDumper --- .../Component/Routing/Matcher/Dumper/PhpMatcherDumper.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/Routing/Matcher/Dumper/PhpMatcherDumper.php b/src/Symfony/Component/Routing/Matcher/Dumper/PhpMatcherDumper.php index ab3a0f8018..48ddbd7e20 100644 --- a/src/Symfony/Component/Routing/Matcher/Dumper/PhpMatcherDumper.php +++ b/src/Symfony/Component/Routing/Matcher/Dumper/PhpMatcherDumper.php @@ -100,7 +100,7 @@ EOF; } /** - * Generates PHP code recursively to match a RouteCollection with all child routes and child collections. + * Generates PHP code to match a RouteCollection with all its routes. * * @param RouteCollection $routes A RouteCollection instance * @param Boolean $supportsRedirections Whether redirections are supported by the base class @@ -323,9 +323,9 @@ EOF; /** * Groups consecutive routes having the same hostname regex. * - * The results is a collection of collections of routes having the same hostname regex. + * The result is a collection of collections of routes having the same hostname regex. * - * @param DumperCollection $routes Flat collection of DumperRoutes + * @param RouteCollection $routes A flat RouteCollection * * @return DumperCollection A collection with routes grouped by hostname regex in sub-collections */ @@ -354,7 +354,7 @@ EOF; * Organizes the routes into a prefix tree. * * Routes order is preserved such that traversing the tree will traverse the - * routes in the origin order + * routes in the origin order. * * @param DumperCollection $collection A collection of routes *