From 61d9c8639e429a14e11df0243c3664581983f24b Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Fri, 25 Nov 2016 17:31:27 +0300 Subject: [PATCH] Issue #28793: Fix c/p error in AsyncGenerator documentation Patch by Julien Palard. --- Doc/library/collections.abc.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst index 3ac49db78d7..58b03b9bd76 100644 --- a/Doc/library/collections.abc.rst +++ b/Doc/library/collections.abc.rst @@ -223,7 +223,7 @@ ABC Inherits from Abstract Methods Mixin .. versionadded:: 3.5 -.. class:: Generator +.. class:: AsyncGenerator ABC for asynchronous generator classes that implement the protocol defined in :pep:`525` and :pep:`492`.