Skip to content

Commit 609a29a

Browse files
committed
words
1 parent 27bbddd commit 609a29a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/guide/widgets.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ Let's create a simple custom widget to display a greeting.
2424
--8<-- "docs/examples/guide/widgets/hello01.py"
2525
```
2626

27-
The highlighted lines define a custom widget class with just a [render()][textual.widget.Widget.render] method. Textual will display whatever is returned from render in the content area of your widget. We have returned a string in the code above, but there are other possible return types which we will cover later.
27+
The highlighted lines define a custom widget class with just a [render()][textual.widget.Widget.render] method.
28+
Textual will display whatever is returned from render in the [content](./content.md) area of your widget.
2829

2930
Note that the text contains tags in square brackets, i.e. `[b]`.
3031
This is [Textual markup](./content.md#markup) which allows you to embed various styles within your content.

0 commit comments

Comments
 (0)