it's -> its

This commit is contained in:
Dave Pearson
2022-10-15 21:54:29 +01:00
parent 237d17ff16
commit 338eca9e10

View File

@@ -15,7 +15,7 @@ A widget is a component of your UI responsible for managing a rectangular region
There is a growing collection of [builtin widgets](../widgets/index.md) in Textual, but you can build entirely custom widgets that work in the same way.
The first step in building a widget is to import and extend a widget class. This can either be [Widget][textual.widget.Widget] which is the base class of all widgets, or one of it's subclasses.
The first step in building a widget is to import and extend a widget class. This can either be [Widget][textual.widget.Widget] which is the base class of all widgets, or one of its subclasses.
Let's create a simple custom widget to display a greeting.