summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-10-23 14:11:29 (GMT)
committerGitHub <noreply@github.com>2022-10-23 14:11:29 (GMT)
commitf3c23fc48cc9a72ec0ad447276bb07d1a85dd37f (patch)
treec936916618887c5bb781c3e2ac4f74c77de78e57
parentdcb342b5f9d931b030ca310bf3e175bbc54df5aa (diff)
downloadcpython-f3c23fc48cc9a72ec0ad447276bb07d1a85dd37f.zip
cpython-f3c23fc48cc9a72ec0ad447276bb07d1a85dd37f.tar.gz
cpython-f3c23fc48cc9a72ec0ad447276bb07d1a85dd37f.tar.bz2
gh-98561: Fix a typo in typing (GH-98562)
(cherry picked from commit b6d5d5b60afc61337c569c07a881003faaa791e7) Co-authored-by: Omkaar <79257339+Infiniticity@users.noreply.github.com>
-rw-r--r--Doc/library/typing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index cfe484b..198bc88 100644
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -305,7 +305,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