From 681e2d6c87506d8d071b0f7738326f13001cca53 Mon Sep 17 00:00:00 2001 From: Omkaar <79257339+Infiniticity@users.noreply.github.com> Date: Sun, 23 Oct 2022 08:35:04 +0530 Subject: [PATCH] Fix a Typo --- Doc/library/typing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index dc5696aff69bd4..ae7e223069962e 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