diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-02-14 10:47:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-14 10:47:49 (GMT) |
commit | bc3718eb4b6defcdffb23b0c6f5879c5e721609a (patch) | |
tree | bb2ed8e9bac7da477e790882a0abbd9432f13157 /Doc/library/typing.rst | |
parent | 59852bbcc38ed4b5d6da7208e0e6b96456028523 (diff) | |
download | cpython-bc3718eb4b6defcdffb23b0c6f5879c5e721609a.zip cpython-bc3718eb4b6defcdffb23b0c6f5879c5e721609a.tar.gz cpython-bc3718eb4b6defcdffb23b0c6f5879c5e721609a.tar.bz2 |
GH-101898: Fix missing term references for hashable definition (GH-101899)
Fix missing term references for hashable definition
(cherry picked from commit 3690688149dca11589af59b7704541336613199a)
Co-authored-by: Furkan Onder <furkanonder@protonmail.com>
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 d415f14..2761336 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -425,7 +425,7 @@ are intended primarily for static type checking. A user-defined generic class can have ABCs as base classes without a metaclass conflict. Generic metaclasses are not supported. The outcome of parameterizing -generics is cached, and most types in the typing module are hashable and +generics is cached, and most types in the typing module are :term:`hashable` and comparable for equality. |