diff --git a/docs/rules/no-arrow-functions-in-watch.md b/docs/rules/no-arrow-functions-in-watch.md index 0d00f1fd5..4b1553567 100644 --- a/docs/rules/no-arrow-functions-in-watch.md +++ b/docs/rules/no-arrow-functions-in-watch.md @@ -13,7 +13,7 @@ since: v7.0.0 ## :book: Rule Details -This rules disallows using arrow functions to defined watcher.The reason is arrow functions bind the parent context, so `this` will not be the Vue instance as you expect.([see here for more details](https://vuejs.org/api/options-state.html#watch)) +This rule disallows using arrow functions when defining a watcher. Arrow functions bind to their parent context, which means they will not have access to the Vue component instance via `this`. [See here for more details](https://vuejs.org/api/options-state.html#watch).