Skip to content

Commit

Permalink
chore: fix grammar in core/observer/index.js comments (vuejs#9116)
Browse files Browse the repository at this point in the history
  • Loading branch information
HusamElbashir authored and aJean committed Aug 19, 2020
1 parent ccbb02a commit 178a6ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/observer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function toggleObserving (value: boolean) {
export class Observer {
value: any;
dep: Dep;
vmCount: number; // number of vms that has this object as root $data
vmCount: number; // number of vms that have this object as root $data

constructor (value: any) {
this.value = value
Expand All @@ -57,7 +57,7 @@ export class Observer {
}

/**
* Walk through each property and convert them into
* Walk through all properties and convert them into
* getter/setters. This method should only be called when
* value type is Object.
*/
Expand All @@ -81,7 +81,7 @@ export class Observer {
// helpers

/**
* Augment an target Object or Array by intercepting
* Augment a target Object or Array by intercepting
* the prototype chain using __proto__
*/
function protoAugment (target, src: Object) {
Expand All @@ -91,7 +91,7 @@ function protoAugment (target, src: Object) {
}

/**
* Augment an target Object or Array by defining
* Augment a target Object or Array by defining
* hidden properties.
*/
/* istanbul ignore next */
Expand Down

0 comments on commit 178a6ea

Please sign in to comment.