From 20b59cdf6d33af498a97b6e62937385afb2f1757 Mon Sep 17 00:00:00 2001 From: Mike Driscoll Date: Wed, 5 Oct 2022 10:51:52 -0500 Subject: [PATCH] Highlight import of container --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index 216b92bb3c..16fbafc0dd 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -153,7 +153,7 @@ Textual has a builtin `Button` widget which takes care of the first three compon Let's add those to the app. Just a skeleton for now, we will add the rest of the features as we go. -```python title="stopwatch02.py" hl_lines="3 6-7 10-18 30" +```python title="stopwatch02.py" hl_lines="2-3 6-7 10-18 30" --8<-- "docs/examples/tutorial/stopwatch02.py" ```