summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-08-28 22:24:41 (GMT)
committerGitHub <noreply@github.com>2023-08-28 22:24:41 (GMT)
commit5531d03d99c980d29915923e6c93028b4af083b1 (patch)
tree110ae2fa1af6935c1d241395843dc19cbb060135
parentf90099c3bd8ba74ac69ffd26cbc443ae3ce00e10 (diff)
downloadcpython-5531d03d99c980d29915923e6c93028b4af083b1.zip
cpython-5531d03d99c980d29915923e6c93028b4af083b1.tar.gz
cpython-5531d03d99c980d29915923e6c93028b4af083b1.tar.bz2
[3.12] Fix typo in typing docs: Remove redundant backtick (GH-108559) (#108560)
Fix typo in typing docs: Remove redundant backtick (GH-108559) (cherry picked from commit 72b615ab015ccff8a92e22c5b5f97fa8aca3ba1f) Co-authored-by: nikkie <takuyafjp+develop@gmail.com>
-rw-r--r--Doc/library/typing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index d060066..f36dc76 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]``