Skip to content

Commit

Permalink
spaces, not tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
janl committed Nov 14, 2009
1 parent 176b011 commit 26dcea4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mustache.js
Expand Up @@ -32,7 +32,7 @@ var Mustache = function() {
if(typeof(context[name]) != "object") {
throw({message: "subcontext for '" + name + "' is not an object"});
}
if(!partials || !partials[name]) {
if(!partials || !partials[name]) {
throw({message: "unknown_partial"});
}
return this.render(partials[name], context[name], partials);
Expand Down

0 comments on commit 26dcea4

Please sign in to comment.