From e58a338d518a60562749bed71c3f527aa367a7f8 Mon Sep 17 00:00:00 2001 From: Marco Leogrande Date: Thu, 8 Nov 2018 18:41:53 -0800 Subject: [PATCH] Fix typo in typing.pyi (#2595) --- stdlib/3/typing.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): ...