Selaa lähdekoodia

chore: minor comment cleanup (#9191)

Nick Hall 7 vuotta sitten
vanhempi
commit
af9e2b3f0f
1 muutettua tiedostoa jossa 3 lisäystä ja 3 poistoa
  1. 3 3
      src/core/observer/dep.js

+ 3 - 3
src/core/observer/dep.js

@@ -49,9 +49,9 @@ export default class Dep {
   }
 }
 
-// the current target watcher being evaluated.
-// this is globally unique because there could be only one
-// watcher being evaluated at any time.
+// The current target watcher being evaluated.
+// This is globally unique because only one watcher
+// can be evaluated at a time.
 Dep.target = null
 const targetStack = []