fix typo in typing.rst (#30841)

This commit is contained in:
Jelle Zijlstra 2022-01-23 15:36:08 -08:00 committed by GitHub
parent d1beb241d9
commit d75a51bea3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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`).