tweaked error message
authorFabien Potencier <fabien.potencier@gmail.com>
Mon, 20 Dec 2010 14:05:29 +0000 (15:05 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Mon, 20 Dec 2010 14:05:29 +0000 (15:05 +0100)
lib/Twig/Token.php

index b0c553b..71826a9 100644 (file)
@@ -117,7 +117,7 @@ class Twig_Token
                 $name = 'PUNCTUATION_TYPE';
                 break;
             default:
-                throw new Twig_Error_Syntax(sprintf('Token of type %s does not exist.', $type));
+                throw new Twig_Error_Syntax(sprintf('Token of type "%s" does not exist.', $type));
         }
 
         return $short ? $name : 'Twig_Token::'.$name;
@@ -149,7 +149,7 @@ class Twig_Token
             case self::PUNCTUATION_TYPE:
                 return 'punctuation';
             default:
-                throw new Twig_Error_Syntax(sprintf('Token of type %s does not exist.', $type));
+                throw new Twig_Error_Syntax(sprintf('Token of type "%s" does not exist.', $type));
         }
     }
 }