summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-11-25 14:31:27 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-11-25 14:31:27 (GMT)
commit61d9c8639e429a14e11df0243c3664581983f24b (patch)
treeb53db86116b6d2682ee73286df68271e8401c534 /Doc
parentf7d199ff329f0cb68f367c7aa169e058b2ab50f4 (diff)
downloadcpython-61d9c8639e429a14e11df0243c3664581983f24b.zip
cpython-61d9c8639e429a14e11df0243c3664581983f24b.tar.gz
cpython-61d9c8639e429a14e11df0243c3664581983f24b.tar.bz2
Issue #28793: Fix c/p error in AsyncGenerator documentation
Patch by Julien Palard.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/collections.abc.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst
index 3ac49db..58b03b9 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`.