From 817e884f60c0600b78ffb16c423513bd9dcde394 Mon Sep 17 00:00:00 2001 From: Tom MacWright Date: Tue, 11 Oct 2011 12:17:51 -0400 Subject: [PATCH] Trailing whitespace OCD fix. --- mustache.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mustache.js b/mustache.js index 159415c..31566ce 100644 --- a/mustache.js +++ b/mustache.js @@ -299,7 +299,7 @@ var Mustache = function() { s = String(s === null ? "" : s); return s.replace(/&(?!\w+;)|["'<>\\]/g, function(s) { switch(s) { - case "&": return "&"; + case "&": return "&"; case '"': return '"'; case "'": return '''; case "<": return "<";