Merge pull request #1068 from 0xack13/master

Fix typo
This commit is contained in:
Kevin Decker
2015-07-30 09:53:25 -05:00
+1 -1
View File
@@ -61,7 +61,7 @@ HandlebarsEnvironment.prototype = {
function registerDefaultHelpers(instance) {
instance.registerHelper('helperMissing', function(/* [args, ]options */) {
if (arguments.length === 1) {
// A missing field in a {{foo}} constuct.
// A missing field in a {{foo}} construct.
return undefined;
} else {
// Someone is actually trying to call something, blow up.