diff options
author | Guido van Rossum <guido@python.org> | 2021-11-26 22:10:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-26 22:10:01 (GMT) |
commit | 94daf39b2f7e9b50e7ae7a16caeef804f8e37ae3 (patch) | |
tree | 4d381ff24593bb97361040c497a91616b539405e /Doc/howto | |
parent | 9a7611a7c4da6406383f8ffcea272ded6f890f1e (diff) | |
download | cpython-94daf39b2f7e9b50e7ae7a16caeef804f8e37ae3.zip cpython-94daf39b2f7e9b50e7ae7a16caeef804f8e37ae3.tar.gz cpython-94daf39b2f7e9b50e7ae7a16caeef804f8e37ae3.tar.bz2 |
Fix markup buglet in Doc/howto/annotations.rst (#29802)
Diffstat (limited to 'Doc/howto')
-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. |