diff --git a/docs/tutorial.md b/docs/tutorial.md index 16fbafc0d..a6467093a 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