From a90a2fd72879f98090ea17217b1981a2905fc03a Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Thu, 13 Oct 2022 13:45:34 +0100 Subject: [PATCH] Correct the name of mypy It seems that mypy's preference for its name is mypy (or even my[py]), but not Mypy. --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index b41a7365b..e73088655 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -64,7 +64,7 @@ python stopwatch.py Type hints are entirely optional in Textual. We've included them in the example code but it's up to you whether you add them to your own projects. -We're a big fan of Python type hints at Textualize. If you haven't encountered type hinting, it's a way to express the types of your data, parameters, and return values. Type hinting allows tools like [Mypy](https://mypy.readthedocs.io/en/stable/) to catch bugs before your code runs. +We're a big fan of Python type hints at Textualize. If you haven't encountered type hinting, it's a way to express the types of your data, parameters, and return values. Type hinting allows tools like [mypy](https://mypy.readthedocs.io/en/stable/) to catch bugs before your code runs. The following function contains type hints: