From bc8167db2a8ba2b2e653035c35fa41cd64a7d0ea Mon Sep 17 00:00:00 2001 From: Mateusz Mandera Date: Mon, 1 Jan 2024 21:35:46 +0100 Subject: [PATCH] docs: Fix typo in mypy doc. --- docs/testing/mypy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/testing/mypy.md b/docs/testing/mypy.md index 231fabdfc8..4b87b5e9e6 100644 --- a/docs/testing/mypy.md +++ b/docs/testing/mypy.md @@ -201,7 +201,7 @@ if it isn't. It supports being passed a `sub_validator`, which will verify that each element in the list has a given type as well. One can express the idea "If `sub_validator` validates that something is a `ResultT`, -`check_list(sub_validator)` validators that something is a +`check_list(sub_validator)` validates that something is a `List[ResultT]` as follows: ```python