[Routing] fixed spelling errors in phpdoc

This commit is contained in:
Sebastiaan Stok 2012-05-14 13:10:18 +02:00
parent 8d7f7f5b11
commit bbf7183ccb
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ class UrlGenerator implements UrlGeneratorInterface
{
protected $context;
protected $decodedChars = array(
// %2F is not valid in a URL, so we don't encode it (which is fine as the requirements explicitely allowed it)
// %2F is not valid in a URL, so we don't encode it (which is fine as the requirements explicitly allowed it)
'%2F' => '/',
);

View File

@ -17,7 +17,7 @@ use Symfony\Component\Config\Resource\ResourceInterface;
* A RouteCollection represents a set of Route instances.
*
* When adding a route, it overrides existing routes with the
* same name defined in theinstance or its children and parents.
* same name defined in the instance or its children and parents.
*
* @author Fabien Potencier <fabien@symfony.com>
*