diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-02-14 10:45:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-14 10:45:42 (GMT) |
commit | 4aeae286715a3a9fa624429733582917606000c3 (patch) | |
tree | 5f9eb39a539ebc608e09cac967e44533b8d75bcd /Doc/library/pathlib.rst | |
parent | fd155b91392c5bd238781bb11e040cf46c94725c (diff) | |
download | cpython-4aeae286715a3a9fa624429733582917606000c3.zip cpython-4aeae286715a3a9fa624429733582917606000c3.tar.gz cpython-4aeae286715a3a9fa624429733582917606000c3.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/pathlib.rst')
-rw-r--r-- | Doc/library/pathlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst index e8bb00f..abdeea2 100644 --- a/Doc/library/pathlib.rst +++ b/Doc/library/pathlib.rst @@ -186,7 +186,7 @@ these classes, since they don't provide any operation that does system calls. General properties ^^^^^^^^^^^^^^^^^^ -Paths are immutable and hashable. Paths of a same flavour are comparable +Paths are immutable and :term:`hashable`. Paths of a same flavour are comparable and orderable. These properties respect the flavour's case-folding semantics:: |