From 9d76c8c65eb35b783a66fa85c0b86e269805e66a Mon Sep 17 00:00:00 2001 From: Michael Bridak Date: Mon, 24 Oct 2022 12:30:58 -0700 Subject: [PATCH] Typo... --- docs/guide/input.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/input.md b/docs/guide/input.md index 968e19c7e..5052a5dd9 100644 --- a/docs/guide/input.md +++ b/docs/guide/input.md @@ -78,7 +78,7 @@ The following example shows how focus works in practice. ```{.textual path="docs/examples/guide/input/key03.py", press="tab,H,e,l,l,o,tab,W,o,r,l,d,!,_"} ``` -The app splits the screen in to quarters, with a `TextLog` widget in each quarter. If you click any of the text logs, you should see that it is highlighted to show that thw widget has focus. Key events will be sent to the focused widget only. +The app splits the screen in to quarters, with a `TextLog` widget in each quarter. If you click any of the text logs, you should see that it is highlighted to show that the widget has focus. Key events will be sent to the focused widget only. !!! tip