[3.15] gh-151070: Fix class referencing typo in collections.abc docs (GH-151088) (GH-151110)

(cherry picked from commit 29a920e80e)

Co-authored-by: Arshal Aromal <arshalaromal19@gmail.com>
This commit is contained in:
Miss Islington (bot) 2026-06-08 21:47:05 +02:00 committed by GitHub
parent 5751633fac
commit fd4f9fa186
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -456,7 +456,7 @@ Notes on using :class:`Set` and :class:`MutableSet` as a mixin:
The :class:`Set` mixin provides a :meth:`!_hash` method to compute a hash value
for the set; however, :meth:`~object.__hash__` is not defined because not all sets
are :term:`hashable` or immutable. To add set hashability using mixins,
inherit from both :meth:`Set` and :meth:`Hashable`, then define
inherit from both :class:`Set` and :class:`Hashable`, then define
``__hash__ = Set._hash``.
.. seealso::