From fe057168aea96fa48aadaaa614d65f7f3fee73b9 Mon Sep 17 00:00:00 2001 From: Saleh Batati <0xack13@gmail.com> Date: Thu, 30 Jul 2015 06:02:51 +0300 Subject: [PATCH] Fix typo --- lib/handlebars/base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/handlebars/base.js b/lib/handlebars/base.js index cfe1e917..a1847fc4 100644 --- a/lib/handlebars/base.js +++ b/lib/handlebars/base.js @@ -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.