From 78ca994ccb11cefb994fda1660cddc3daaab2561 Mon Sep 17 00:00:00 2001 From: Ryan Delk Date: Thu, 3 Nov 2022 13:55:22 -0500 Subject: [PATCH] docs: fix formatting and grammar for clarity --- docs/rules/no-arrow-functions-in-watch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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).