From a22d5cc6aa4b6f8d7b22bddffbcb8c1fe8adb528 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Fri, 21 Aug 2020 22:14:57 -0700 Subject: [PATCH] Spelling and minor variable name tweak --- src/ignite-template.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ignite-template.js b/src/ignite-template.js index b83d910..6a02d57 100644 --- a/src/ignite-template.js +++ b/src/ignite-template.js @@ -161,7 +161,7 @@ class IgniteTemplate { } }; - //Store the wrapped functino so that it's the old value next time around + //Store the wrapped function so that it's the old value next time around //and the old event can be removed in the future func._value = wrapped; @@ -170,10 +170,10 @@ class IgniteTemplate { })); //Create the initial wrapper - var old = func._value; + var target = func._value; var wrapped = (e) => { if (e.key === 'Enter') { - old(e); + target(e); } };