File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ export function toggleObserving (value: boolean) {
37
37
export class Observer {
38
38
value : any ;
39
39
dep: Dep ;
40
- vmCount: number ; // number of vms that has this object as root $data
40
+ vmCount: number ; // number of vms that have this object as root $data
41
41
42
42
constructor ( value : any ) {
43
43
this . value = value
@@ -57,7 +57,7 @@ export class Observer {
57
57
}
58
58
59
59
/**
60
- * Walk through each property and convert them into
60
+ * Walk through all properties and convert them into
61
61
* getter/setters. This method should only be called when
62
62
* value type is Object.
63
63
*/
@@ -81,7 +81,7 @@ export class Observer {
81
81
// helpers
82
82
83
83
/**
84
- * Augment an target Object or Array by intercepting
84
+ * Augment a target Object or Array by intercepting
85
85
* the prototype chain using __proto__
86
86
*/
87
87
function protoAugment ( target , src : Object ) {
@@ -91,7 +91,7 @@ function protoAugment (target, src: Object) {
91
91
}
92
92
93
93
/**
94
- * Augment an target Object or Array by defining
94
+ * Augment a target Object or Array by defining
95
95
* hidden properties.
96
96
*/
97
97
/* istanbul ignore next */
You can’t perform that action at this time.
0 commit comments