From: Fabien Potencier Date: Tue, 17 Jul 2012 08:29:54 +0000 (+0200) Subject: fixed typo X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=f0d0d6da876c43428fc55d5b53e2e3affd5dac6e;p=web%2Fkonrad%2Ftwig.git fixed typo --- diff --git a/lib/Twig/Loader/Filesystem.php b/lib/Twig/Loader/Filesystem.php index 8c32527..55a43fa 100644 --- a/lib/Twig/Loader/Filesystem.php +++ b/lib/Twig/Loader/Filesystem.php @@ -162,7 +162,7 @@ class Twig_Loader_Filesystem implements Twig_LoaderInterface $namespace = substr($name, 1, $pos - 1); if (!isset($this->paths[$namespace])) { - throw new \Twig_Error_Loader(sprintf('There is not registered paths for path name "%s".', $namespace)); + throw new \Twig_Error_Loader(sprintf('There are no registered paths for namespace "%s".', $namespace)); } $name = substr($name, $pos + 1);