summaryrefslogtreecommitdiff
path: root/Doc/library/collections.abc.rst
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2014-05-20 12:58:38 -0400
committerDonald Stufft <donald@stufft.io>2014-05-20 12:58:38 -0400
commit8b852f111eb3e3f2e4f53f207859fdb3654d9b10 (patch)
tree7b730a2191a3fcc424e834994b35c24b1f4dbd3d /Doc/library/collections.abc.rst
parent1c4398f880c21d5e14462ef7096319da39148774 (diff)
downloadcpython-git-8b852f111eb3e3f2e4f53f207859fdb3654d9b10.tar.gz
Fix Issue #21528 - Fix documentation typos
Diffstat (limited to 'Doc/library/collections.abc.rst')
-rw-r--r--Doc/library/collections.abc.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst
index 356f47332f..efa922b921 100644
--- a/Doc/library/collections.abc.rst
+++ b/Doc/library/collections.abc.rst
@@ -179,7 +179,7 @@ Notes on using :class:`Set` and :class:`MutableSet` as a mixin:
(3)
The :class:`Set` mixin provides a :meth:`_hash` method to compute a hash value
for the set; however, :meth:`__hash__` is not defined because not all sets
- are hashable or immutable. To add set hashabilty using mixins,
+ are hashable or immutable. To add set hashability using mixins,
inherit from both :meth:`Set` and :meth:`Hashable`, then define
``__hash__ = Set._hash``.