diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2023-02-27 07:26:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-27 07:26:21 (GMT) |
commit | 101a12c5767a8c6ca6e32b8e24a462d2606d24ca (patch) | |
tree | ee115a6ab8381abeb1a36b1b04570cd1dddaea2f /Doc | |
parent | f3cb15c88afa2e87067de3c6106664b3f7cd4035 (diff) | |
download | cpython-101a12c5767a8c6ca6e32b8e24a462d2606d24ca.zip cpython-101a12c5767a8c6ca6e32b8e24a462d2606d24ca.tar.gz cpython-101a12c5767a8c6ca6e32b8e24a462d2606d24ca.tar.bz2 |
gh-101100: Fix sphinx warnings in `types` module (#102274)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/types.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/types.rst b/Doc/library/types.rst index 415413c..747ba58 100644 --- a/Doc/library/types.rst +++ b/Doc/library/types.rst @@ -486,7 +486,7 @@ Coroutine Utility Functions The generator-based coroutine is still a :term:`generator iterator`, but is also considered to be a :term:`coroutine` object and is :term:`awaitable`. However, it may not necessarily implement - the :meth:`__await__` method. + the :meth:`~object.__await__` method. If *gen_func* is a generator function, it will be modified in-place. |