From b1034a67022d3e466b9b266d1b4603769f10bb9e Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Wed, 8 Apr 2020 21:50:33 +1000 Subject: [PATCH] docs: Fix simple typo, mulitple -> multiple There is a small typo in lib/handlebars/compiler/whitespace-control.js. Should read `multiple` rather than `mulitple`. --- lib/handlebars/compiler/whitespace-control.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/handlebars/compiler/whitespace-control.js b/lib/handlebars/compiler/whitespace-control.js index 7db68398..c437bf01 100644 --- a/lib/handlebars/compiler/whitespace-control.js +++ b/lib/handlebars/compiler/whitespace-control.js @@ -187,7 +187,7 @@ function isNextWhitespace(body, i, isRoot) { // // If i is undefined, then the first child will be marked as such. // -// If mulitple is truthy then all whitespace will be stripped out until non-whitespace +// If multiple is truthy then all whitespace will be stripped out until non-whitespace // content is met. function omitRight(body, i, multiple) { let current = body[i == null ? 0 : i + 1]; @@ -212,7 +212,7 @@ function omitRight(body, i, multiple) { // // If i is undefined then the last child will be marked as such. // -// If mulitple is truthy then all whitespace will be stripped out until non-whitespace +// If multiple is truthy then all whitespace will be stripped out until non-whitespace // content is met. function omitLeft(body, i, multiple) { let current = body[i == null ? body.length - 1 : i - 1];