From ceb531e5354b3f5c2d4bf1b0083ab0717e79d361 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Thu, 13 Oct 2022 14:46:39 +0100 Subject: [PATCH] Add code markup to the mention of a class name --- docs/guide/devtools.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/devtools.md b/docs/guide/devtools.md index 9b60dbd4c..970b8f768 100644 --- a/docs/guide/devtools.md +++ b/docs/guide/devtools.md @@ -23,7 +23,7 @@ You can run Textual apps with the `run` subcommand. If you supply a path to a Py textual run my_app.py ``` -The `run` sub-command assumes you have an App instance called `app` in the global scope of your Python file. If the application is called something different, you can specify it with a colon following the filename: +The `run` sub-command assumes you have an `App` instance called `app` in the global scope of your Python file. If the application is called something different, you can specify it with a colon following the filename: ```bash textual run my_app.py:alternative_app