From 21d5f1b2b64cfb22ca609c612d1df4e707aafcc1 Mon Sep 17 00:00:00 2001 From: nikkie Date: Mon, 28 Aug 2023 19:59:06 +0900 Subject: [PATCH] docs: Remove redundant back quote --- 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 fad945ffc8210a..18e15f304f9f80 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]``