]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in typing docs: Remove redundant backtick (#108559)
authornikkie <takuyafjp+develop@gmail.com>
Mon, 28 Aug 2023 11:19:29 +0000 (20:19 +0900)
committerGitHub <noreply@github.com>
Mon, 28 Aug 2023 11:19:29 +0000 (11:19 +0000)
Doc/library/typing.rst

index fad945ffc8210a8c96c6a9c83b2d8f44b1e4d1f0..18e15f304f9f80ee23423d849ce8df4e82468f73 100644 (file)
@@ -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]``