summaryrefslogtreecommitdiffstats
path: root/Doc/library/typing.rst
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-02-14 10:47:49 (GMT)
committerGitHub <noreply@github.com>2023-02-14 10:47:49 (GMT)
commitbc3718eb4b6defcdffb23b0c6f5879c5e721609a (patch)
treebb2ed8e9bac7da477e790882a0abbd9432f13157 /Doc/library/typing.rst
parent59852bbcc38ed4b5d6da7208e0e6b96456028523 (diff)
downloadcpython-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.rst2
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.