diff options
author | Omkaar <79257339+Infiniticity@users.noreply.github.com> | 2022-10-23 14:05:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-23 14:05:08 (GMT) |
commit | b6d5d5b60afc61337c569c07a881003faaa791e7 (patch) | |
tree | 23d2b5858d15d441c0f922aa8b166628fff8f1f0 /Doc | |
parent | 833f275840811a3f38c367df24bbc44caf00b26f (diff) | |
download | cpython-b6d5d5b60afc61337c569c07a881003faaa791e7.zip cpython-b6d5d5b60afc61337c569c07a881003faaa791e7.tar.gz cpython-b6d5d5b60afc61337c569c07a881003faaa791e7.tar.bz2 |
gh-98561: Fix a typo in typing (GH-98562)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/typing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index dc5696a..ae7e223 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -319,7 +319,7 @@ single type parameter ``T`` . This also makes ``T`` valid as a type within the class body. The :class:`Generic` base class defines :meth:`~object.__class_getitem__` so -that ``LoggedVar[t]`` is valid as a type:: +that ``LoggedVar[T]`` is valid as a type:: from collections.abc import Iterable |