From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 28 Aug 2023 11:28:19 +0000 (-0700) Subject: [3.11] Fix typo in typing docs: Remove redundant backtick (GH-108559) (#108561) X-Git-Tag: v3.11.6~178 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c19713d4a1d7c4033ae18896ab2b6714cf60fb21;p=thirdparty%2FPython%2Fcpython.git [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 --- 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]``