summaryrefslogtreecommitdiffstats
path: root/Doc/library/collections.abc.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2014-07-02 23:31:54 (GMT)
committerRaymond Hettinger <python@rcn.com>2014-07-02 23:31:54 (GMT)
commit748ff8bfd137a834056eb0cd3bfb1d5105c46522 (patch)
treeb7135fe92a31f91b26d684c07cef3f063b75f70d /Doc/library/collections.abc.rst
parentb57d6a2fec3b0f2bb508ae3f3dcb9d6b54056fda (diff)
parent11cda4766108c3220402c5a430573a1288a1b4ac (diff)
downloadcpython-748ff8bfd137a834056eb0cd3bfb1d5105c46522.zip
cpython-748ff8bfd137a834056eb0cd3bfb1d5105c46522.tar.gz
cpython-748ff8bfd137a834056eb0cd3bfb1d5105c46522.tar.bz2
merge
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 efa922b..5f7888a 100644
--- a/Doc/library/collections.abc.rst
+++ b/Doc/library/collections.abc.rst
@@ -173,7 +173,7 @@ Notes on using :class:`Set` and :class:`MutableSet` as a mixin:
(2)
To override the comparisons (presumably for speed, as the
- semantics are fixed), redefine :meth:`__le__` and
+ semantics are fixed), redefine :meth:`__le__` and :meth:`__ge__`,
then the other operations will automatically follow suit.
(3)