Simone Todaro 5 years ago
parent
commit
307826b903
3 changed files with 3 additions and 3 deletions
  1. 1 1
      dist/alpine-ie11.js
  2. 1 1
      dist/alpine.js
  3. 1 1
      src/directives/for.js

+ 1 - 1
dist/alpine-ie11.js

@@ -5906,7 +5906,7 @@
   }
 
   function lookAheadForMatchingKeyedElementAndMoveItIfFound(nextEl, currentKey) {
-    // We don't know if nextEl is avtually an element so we check that it's not a falsy value first
+    // We don't know if nextEl is actually an element so we check that it's not a falsy value first
     if (!nextEl) return false; // If the the key's DO match, no need to look ahead.
 
     if (nextEl.__x_for_key === currentKey) return nextEl; // If they don't, we'll look ahead for a match.

+ 1 - 1
dist/alpine.js

@@ -481,7 +481,7 @@
   }
 
   function lookAheadForMatchingKeyedElementAndMoveItIfFound(nextEl, currentKey) {
-    // We don't know if nextEl is avtually an element so we check that it's not a falsy value first
+    // We don't know if nextEl is actually an element so we check that it's not a falsy value first
     if (!nextEl) return false; // If the the key's DO match, no need to look ahead.
 
     if (nextEl.__x_for_key === currentKey) return nextEl; // If they don't, we'll look ahead for a match.

+ 1 - 1
src/directives/for.js

@@ -109,7 +109,7 @@ function addElementInLoopAfterCurrentEl(templateEl, currentEl) {
 }
 
 function lookAheadForMatchingKeyedElementAndMoveItIfFound(nextEl, currentKey) {
-    // We don't know if nextEl is avtually an element so we check that it's not a falsy value first
+    // We don't know if nextEl is actually an element so we check that it's not a falsy value first
     if(!nextEl) return false
 
     // If the the key's DO match, no need to look ahead.