Fix typo in typing docs: Remove redundant backtick (#108559)

This commit is contained in:
nikkie 2023-08-28 20:19:29 +09:00 committed by GitHub
parent 5d936b6479
commit 72b615ab01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -462,7 +462,7 @@ contrast, a variable annotated with ``type[C]`` (or
themselves -- specifically, it will accept the *class object* of ``C``. For themselves -- specifically, it will accept the *class object* of ``C``. For
example:: example::
a = 3 # Has type ``int``` a = 3 # Has type ``int``
b = int # Has type ``type[int]`` b = int # Has type ``type[int]``
c = type(a) # Also has type ``type[int]`` c = type(a) # Also has type ``type[int]``