Skip to content

Commit

Permalink
Merge pull request meteor#5898 from mitar/patch-21
Browse files Browse the repository at this point in the history
Correct argument
  • Loading branch information
Sashko Stubailo committed Dec 29, 2015
2 parents 9eb9526 + a21be1b commit 64be7cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/htmljs/visitors.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ HTML.Visitor.def({
throw new Error("Unexpected object in htmljs: " + obj);
},
visitFunction: function (fn/*, ...*/) {
throw new Error("Unexpected function in htmljs: " + obj);
throw new Error("Unexpected function in htmljs: " + fn);
}
});

Expand Down

0 comments on commit 64be7cf

Please sign in to comment.