From eaf6373e30c60b9c8d7fa9b0c50e7ade5647122b Mon Sep 17 00:00:00 2001 From: "nathan@stravinsky.local" Date: Wed, 23 Jun 2010 10:35:56 -0500 Subject: [PATCH] changed wording of exception so that test will pass (le sigh?) --- mustache.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mustache.js b/mustache.js index 78e3949..4685b1a 100644 --- a/mustache.js +++ b/mustache.js @@ -79,7 +79,7 @@ var Mustache = function() { var pragmaInfo = token.tag.match(/([\w_-]+) ?([\w]+=[\w]+)?/); var pragma = pragmaInfo[1]; if (!this.pragmas_implemented[pragma]) { - throw new Error("This mustache implementation doesn't understand the '" + + throw new Error("This implementation of mustache doesn't understand the '" + pragma + "' pragma"); } var options = {}