From 2c0ad02760e59a9fcea3eadb2c112dda1503d893 Mon Sep 17 00:00:00 2001 From: kimv Date: Wed, 5 Oct 2022 21:46:58 +0200 Subject: [PATCH] Highlight changed set_interval line in stopwatch06 example --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index a6467093a..343c087ce 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -378,7 +378,7 @@ We've seen how we can update widgets with a timer, but we still need to wire up We need to be able to start, stop, and reset each stopwatch independently. We can do this by adding a few more methods to the `TimeDisplay` class. -```python title="stopwatch06.py" hl_lines="14 30-44 50-61" +```python title="stopwatch06.py" hl_lines="14 18 30-44 50-61" --8<-- "docs/examples/tutorial/stopwatch06.py" ```