From c19713d4a1d7c4033ae18896ab2b6714cf60fb21 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Mon, 28 Aug 2023 04:28:19 -0700 Subject: [PATCH] [3.11] Fix typo in typing docs: Remove redundant backtick (GH-108559) (#108561) Fix typo in typing docs: Remove redundant backtick (GH-108559) (cherry picked from commit 72b615ab015ccff8a92e22c5b5f97fa8aca3ba1f) Co-authored-by: nikkie --- 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 0419f6799c66..09332c7c2133 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -440,7 +440,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]`` -- 2.47.3