@@ -37,7 +37,7 @@ export function toggleObserving (value: boolean) {
3737exportclass Observer {
3838value :any ;
3939 dep:Dep ;
40- vmCount:number ; // number of vms thathas this object as root $data
40+ vmCount:number ; // number of vms thathave this object as root $data
4141
4242constructor ( value :any ) {
4343this . value = value
@@ -57,7 +57,7 @@ export class Observer {
5757}
5858
5959/**
60- * Walk througheach property and convert them into
60+ * Walk throughall properties and convert them into
6161 * getter/setters. This method should only be called when
6262 * value type is Object.
6363 */
@@ -81,7 +81,7 @@ export class Observer {
8181// helpers
8282
8383/**
84- * Augmentan target Object or Array by intercepting
84+ * Augmenta target Object or Array by intercepting
8585 * the prototype chain using __proto__
8686 */
8787function protoAugment ( target , src :Object ) {
@@ -91,7 +91,7 @@ function protoAugment (target, src: Object) {
9191}
9292
9393/**
94- * Augmentan target Object or Array by defining
94+ * Augmenta target Object or Array by defining
9595 * hidden properties.
9696 */
9797/* istanbul ignore next */