From 0ed13d393f94cb5fd70aa0a22e7632de2df7d60d Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Fri, 7 Oct 2022 16:38:46 +0100 Subject: [PATCH] Update docs/tutorial.md --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index 02f49893d..9dba6a822 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -320,7 +320,7 @@ The rule is `"display: none"` which tells Textual to hide the button. ### Manipulating classes -Modifying a widget's CSS class is a convenient way to modify visuals without introducing a lot of messy display related code. +Modifying a widget's CSS classes is a convenient way to update visuals without introducing a lot of messy display related code. You can add and remove CSS classes with the [add_class()][textual.dom.DOMNode.add_class] and [remove_class()][textual.dom.DOMNode.remove_class] methods. We will use these methods to connect the started state to the Start / Stop buttons.