From f0d0d6da876c43428fc55d5b53e2e3affd5dac6e Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 17 Jul 2012 10:29:54 +0200 Subject: [PATCH] fixed typo --- lib/Twig/Loader/Filesystem.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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); -- 1.7.2.5