Pārlūkot izejas kodu

fix: a typo in the mutation.js (#1924)

* fix: a typo in the mutation.js

* Update run-tests.yml

* Update run-tests.yml
柱子 3 gadi atpakaļ
vecāks
revīzija
c4e05492ca
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      packages/alpinejs/src/mutation.js

+ 1 - 1
packages/alpinejs/src/mutation.js

@@ -139,7 +139,7 @@ function onMutate(mutations) {
 
     for (let node of addedNodes) {
        // If an element gets moved on a page, it's registered
-        // as both an "add" and "remove", so we wan't to skip those.
+        // as both an "add" and "remove", so we want to skip those.
         if (removedNodes.includes(node)) continue
 
         onElAddeds.forEach(i => i(node))