From d2076aca2f09fe493d58a8b02398098552c5dec1 Mon Sep 17 00:00:00 2001 From: Lars Stegman Date: Sun, 4 Mar 2018 14:38:01 +0100 Subject: [PATCH] docs: fix grammar mistake --- src/core/observer/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/observer/index.js b/src/core/observer/index.js index 86a21f9e4f2..eeaed5dba22 100644 --- a/src/core/observer/index.js +++ b/src/core/observer/index.js @@ -27,10 +27,10 @@ export const observerState = { } /** - * Observer class that are attached to each observed - * object. Once attached, the observer converts target + * Observer class that is attached to each observed + * object. Once attached, the observer converts the target * object's property keys into getter/setters that - * collect dependencies and dispatches updates. + * collect dependencies and dispatch updates. */ export class Observer { value: any;