From a807ff05812eff34002a202c00c775e17082b129 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Wed, 12 Dec 2018 23:14:49 +0900 Subject: [PATCH] Minor comment cleanup --- src/core/observer/dep.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/observer/dep.js b/src/core/observer/dep.js index d344aff9445..974b9541c28 100644 --- a/src/core/observer/dep.js +++ b/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 = []