summaryrefslogtreecommitdiffstats
path: root/Doc/library/operator.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/operator.rst')
-rw-r--r--Doc/library/operator.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst
index 35e9b49..6d90473 100644
--- a/Doc/library/operator.rst
+++ b/Doc/library/operator.rst
@@ -327,7 +327,7 @@ expect a function argument.
return g
The items can be any type accepted by the operand's :meth:`__getitem__`
- method. Dictionaries accept any hashable value. Lists, tuples, and
+ method. Dictionaries accept any :term:`hashable` value. Lists, tuples, and
strings accept an index or a slice:
>>> itemgetter(1)('ABCDEFG')