From 2a67ba63f00e39b5f601aa828e11a6b59fddc60d Mon Sep 17 00:00:00 2001 From: Dzmitry Sianiuk Date: Thu, 23 Sep 2021 09:19:50 +0300 Subject: [PATCH] Fixed README.md typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b7b75d741..8b3f02849 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ SimpleApp.run(log="textual.log") This app contains a single event handler `on_mount`. The mount event is sent when the app or widget is ready to start processing events, and is typically used for initialization. You may have noticed that `on_mount` is an `async` function. Since Textual is an asynchronous framework we will need this if we need to call most other methods. -The `on_mount` method makes two calls to `self.view.dock` which adds widgets to tht terminal. +The `on_mount` method makes two calls to `self.view.dock` which adds widgets to the terminal. Here's the first line in the mount handler: