diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-12-11 00:03:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-11 00:03:55 (GMT) |
commit | 0f21bac6ce1c688bbe82fcb055e0a59926e43249 (patch) | |
tree | fcbd97c64df40f9f0e2c85fa9896a4d4f398e63d /Doc | |
parent | e1e3f648ad6ab467356d2d14e1d208583c1a76c6 (diff) | |
download | cpython-0f21bac6ce1c688bbe82fcb055e0a59926e43249.zip cpython-0f21bac6ce1c688bbe82fcb055e0a59926e43249.tar.gz cpython-0f21bac6ce1c688bbe82fcb055e0a59926e43249.tar.bz2 |
Fix markup buglet in Doc/howto/annotations.rst (GH-29802) (GH-29805)
(cherry picked from commit 94daf39b2f7e9b50e7ae7a16caeef804f8e37ae3)
Co-authored-by: Guido van Rossum <guido@python.org>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/howto/annotations.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/annotations.rst b/Doc/howto/annotations.rst index 3e61103..2bc2f2d 100644 --- a/Doc/howto/annotations.rst +++ b/Doc/howto/annotations.rst @@ -156,7 +156,7 @@ Manually Un-Stringizing Stringized Annotations require annotating with string values that specifically *can't* be evaluated. For example: - * :pep:`604` union types using `|`, before support for this + * :pep:`604` union types using ``|``, before support for this was added to Python 3.10. * Definitions that aren't needed at runtime, only imported when :const:`typing.TYPE_CHECKING` is true. |