8000 fixing a typo in docs: Remove redundant back quote by ftnext · Pull Request #108559 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

fixing a typo in docs: Remove redundant back quote #108559

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
docs: Remove redundant back quote
  • Loading branch information
ftnext authored Aug 28, 2023
commit 21d5f1b2b64cfb22ca609c612d1df4e707aafcc1
2 changes: 1 addition & 1 deletion Doc/library/typing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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]``

Expand Down
0