[Python-checkins] fix typo in typing.rst (#30841)

gvanrossum webhook-mailer at python.org
Sun Jan 23 18:36:13 EST 2022


https://github.com/python/cpython/commit/d75a51bea3c2442f81d38ff850b81b8b7f3330f0
commit: d75a51bea3c2442f81d38ff850b81b8b7f3330f0
branch: main
author: Jelle Zijlstra <jelle.zijlstra at gmail.com>
committer: gvanrossum <gvanrossum at gmail.com>
date: 2022-01-23T15:36:08-08:00
summary:

fix typo in typing.rst (#30841)

files:
M Doc/library/typing.rst

diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index cb14db90711cf..cdfd403a34ef9 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`).
 



More information about the Python-checkins mailing list