summaryrefslogtreecommitdiffstats
path: root/Doc/library/typing.rst
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2022-01-23 23:36:08 (GMT)
committerGitHub <noreply@github.com>2022-01-23 23:36:08 (GMT)
commitd75a51bea3c2442f81d38ff850b81b8b7f3330f0 (patch)
tree71ccc419c6f96fca6066421f51f92360670e15b8 /Doc/library/typing.rst
parentd1beb241d9bdf912682bc8323a59c052f99b82a8 (diff)
downloadcpython-d75a51bea3c2442f81d38ff850b81b8b7f3330f0.zip
cpython-d75a51bea3c2442f81d38ff850b81b8b7f3330f0.tar.gz
cpython-d75a51bea3c2442f81d38ff850b81b8b7f3330f0.tar.bz2
fix typo in typing.rst (#30841)
Diffstat (limited to 'Doc/library/typing.rst')
-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 cb14db9..cdfd403 100644
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -2142,7 +2142,7 @@ Constant
If ``from __future__ import annotations`` is used in Python 3.7 or later,
annotations are not evaluated at function definition time.
- Instead, they are stored as strings in ``__annotations__``,
+ Instead, they are stored as strings in ``__annotations__``.
This makes it unnecessary to use quotes around the annotation.
(see :pep:`563`).