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 "<";