From fcd0016e0093351de1c043bec8c9e4b0b5a1a2a9 Mon Sep 17 00:00:00 2001 From: Mike Driscoll Date: Wed, 5 Oct 2022 10:57:10 -0500 Subject: [PATCH] Fix some minor typos about the Stopwatch widget --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index 216b92bb3..50023584d 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -161,7 +161,7 @@ We've imported two new widgets in this code: `Button`, which creates a clickable We've defined an empty `TimeDisplay` widget by extending `Static`. We will flesh this out later. -The Stopwatch widget also class extends `Static`. This class has a `compose()` method which yields child widgets, consisting of three `Button` objects and a single `TimeDisplay`. These widgets will form the stopwatch in our sketch. +The Stopwatch widget class also extends `Static`. This class has a `compose()` method which yields child widgets, consisting of three `Button` objects and a single `TimeDisplay` object. These widgets will form the stopwatch in our sketch. #### The buttons