From 4fb9dcd257c78cb90e90ccc70d8ad3ceb3714875 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Sat, 15 Oct 2022 21:57:03 +0100 Subject: [PATCH] an -> a --- docs/guide/widgets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/widgets.md b/docs/guide/widgets.md index 7740d6ec6..bd2cdff2e 100644 --- a/docs/guide/widgets.md +++ b/docs/guide/widgets.md @@ -76,7 +76,7 @@ Let's use Static to create a widget which cycles through "hello" in various lang Note that there is no `render()` method on this widget. The Static class is handling the render for us. Instead we call `update()` when we want to update the content within the widget. -The `next_word` method updates the greeting. We call this method from the mount handler to get the first word, and from an click handler to cycle through the greetings when we click the widget. +The `next_word` method updates the greeting. We call this method from the mount handler to get the first word, and from a click handler to cycle through the greetings when we click the widget. ### Default CSS