From: nikkie Date: Mon, 28 Aug 2023 11:19:29 +0000 (+0900) Subject: Fix typo in typing docs: Remove redundant backtick (#108559) X-Git-Tag: v3.13.0a1~746 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=72b615ab015ccff8a92e22c5b5f97fa8aca3ba1f;p=thirdparty%2FPython%2Fcpython.git Fix typo in typing docs: Remove redundant backtick (#108559) --- diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index fad945ffc821..18e15f304f9f 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]``