Skip to content

Commit c19713d

Browse files
[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 72b615a) Co-authored-by: nikkie <[email protected]>
1 parent bd951cd commit c19713d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/typing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ contrast, a variable annotated with ``type[C]`` (or
440440
themselves -- specifically, it will accept the *class object* of ``C``. For
441441
example::
442442

443-
a = 3 # Has type ``int```
443+
a = 3 # Has type ``int``
444444
b = int # Has type ``type[int]``
445445
c = type(a) # Also has type ``type[int]``
446446

0 commit comments

Comments
 (0)