We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fccf67a commit 29a920eCopy full SHA for 29a920e
1 file changed
Doc/library/collections.abc.rst
@@ -456,7 +456,7 @@ Notes on using :class:`Set` and :class:`MutableSet` as a mixin:
456
The :class:`Set` mixin provides a :meth:`!_hash` method to compute a hash value
457
for the set; however, :meth:`~object.__hash__` is not defined because not all sets
458
are :term:`hashable` or immutable. To add set hashability using mixins,
459
- inherit from both :meth:`Set` and :meth:`Hashable`, then define
+ inherit from both :class:`Set` and :class:`Hashable`, then define
460
``__hash__ = Set._hash``.
461
462
.. seealso::
0 commit comments