From 610fff1a33e82744abd6a33fbd78e67bad52f647 Mon Sep 17 00:00:00 2001 From: vitrioil Date: Thu, 24 Nov 2022 19:59:14 +0530 Subject: [PATCH] Fix correct method name reference in doc --- docs/guide/reactivity.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/reactivity.md b/docs/guide/reactivity.md index 44735c5aa..7d0cee386 100644 --- a/docs/guide/reactivity.md +++ b/docs/guide/reactivity.md @@ -217,7 +217,7 @@ The following example uses a computed attribute. It displays three inputs for ea ``` 1. Combines color components in to a Color object. - 2. The compute method is called when the _result_ of `compute_color` changes. + 2. The watch method is called when the _result_ of `compute_color` changes. === "computed01.css"