diff --git a/stdlib/3/typing.pyi b/stdlib/3/typing.pyi index d99daeaff..dfc64c67e 100644 --- a/stdlib/3/typing.pyi +++ b/stdlib/3/typing.pyi @@ -184,7 +184,7 @@ class Coroutine(Awaitable[_V_co], Generic[_T_co, _T_contra, _V_co]): # NOTE: This type does not exist in typing.py or PEP 484. -# The parameters corrrespond to Generator, but the 4th is the original type. +# The parameters correspond to Generator, but the 4th is the original type. class AwaitableGenerator(Awaitable[_V_co], Generator[_T_co, _T_contra, _V_co], Generic[_T_co, _T_contra, _V_co, _S], metaclass=ABCMeta): ...