diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2022-01-23 23:36:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-23 23:36:08 (GMT) |
commit | d75a51bea3c2442f81d38ff850b81b8b7f3330f0 (patch) | |
tree | 71ccc419c6f96fca6066421f51f92360670e15b8 /Doc/library/typing.rst | |
parent | d1beb241d9bdf912682bc8323a59c052f99b82a8 (diff) | |
download | cpython-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.rst | 2 |
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`). |