docs: Fix typo in mypy doc.

This commit is contained in:
Mateusz Mandera 2024-01-01 21:35:46 +01:00 committed by Tim Abbott
parent 9f009a2e63
commit bc8167db2a
1 changed files with 1 additions and 1 deletions

View File

@ -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