Caleb Porzio 4 年之前
父節點
當前提交
c09a6e8cde
共有 1 個文件被更改,包括 1 次插入1 次删除
  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))
         }