diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-11-25 17:31:27 +0300 |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-11-25 17:31:27 +0300 |
commit | 61d9c8639e429a14e11df0243c3664581983f24b (patch) | |
tree | b53db86116b6d2682ee73286df68271e8401c534 | |
parent | f7d199ff329f0cb68f367c7aa169e058b2ab50f4 (diff) | |
download | cpython-git-61d9c8639e429a14e11df0243c3664581983f24b.tar.gz |
Issue #28793: Fix c/p error in AsyncGenerator documentation
Patch by Julien Palard.
-rw-r--r-- | Doc/library/collections.abc.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst index 3ac49db78d..58b03b9bd7 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`. |