From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 28 Aug 2023 22:24:41 +0000 (-0700) Subject: [3.12] Fix typo in typing docs: Remove redundant backtick (GH-108559) (#108560) X-Git-Tag: v3.12.0rc2~49 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5531d03d99c980d29915923e6c93028b4af083b1;p=thirdparty%2FPython%2Fcpython.git [3.12] Fix typo in typing docs: Remove redundant backtick (GH-108559) (#108560) 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 d060066c0cde..f36dc76c3232 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]``