Caleb Porzio 4 tahun lalu
induk
melakukan
c09a6e8cde
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      packages/alpinejs/src/magics/$watch.js

+ 1 - 1
packages/alpinejs/src/magics/$watch.js

@@ -16,7 +16,7 @@ magic('watch', el => (key, callback) => {
 
         if (! firstTime) {
             // We have to queue this watcher as a microtask so that
-            // the watcher doesn't pick up its dependancies.
+            // the watcher doesn't pick up its own dependancies.
             queueMicrotask(() => callback(value, oldValue))
         }