From 72b615ab015ccff8a92e22c5b5f97fa8aca3ba1f Mon Sep 17 00:00:00 2001 From: nikkie Date: Mon, 28 Aug 2023 20:19:29 +0900 Subject: Fix typo in typing docs: Remove redundant backtick (#108559) --- 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 fad945f..18e15f3 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -462,7 +462,7 @@ contrast, a variable annotated with ``type[C]`` (or themselves -- specifically, it will accept the *class object* of ``C``. For example:: - a = 3 # Has type ``int``` + a = 3 # Has type ``int`` b = int # Has type ``type[int]`` c = type(a) # Also has type ``type[int]`` -- cgit v0.12