summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2016-03-05 00:32:36 (GMT)
committerGregory P. Smith <greg@krypto.org>2016-03-05 00:32:36 (GMT)
commitdeffc0be4b9ecd006e2be35edf4031f145c8c83f (patch)
tree334c8ae888594f6f99cc5d59eb0dbfe5bcb48a40 /Doc/library
parent79f657c6e74004d9da5b3dc1b3fd17089e4a75be (diff)
downloadcpython-deffc0be4b9ecd006e2be35edf4031f145c8c83f.zip
cpython-deffc0be4b9ecd006e2be35edf4031f145c8c83f.tar.gz
cpython-deffc0be4b9ecd006e2be35edf4031f145c8c83f.tar.bz2
issue26484 - fix the broken table in the doc about len().
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/sets.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sets.rst b/Doc/library/sets.rst
index a7ae3ab..6c5e183 100644
--- a/Doc/library/sets.rst
+++ b/Doc/library/sets.rst
@@ -76,7 +76,7 @@ operations:
+-------------------------------+------------+---------------------------------+
| Operation | Equivalent | Result |
+===============================+============+=================================+
-| ``len(s)`` | | number of elements in set *s*
+| ``len(s)`` | | number of elements in set *s* |
| | | (cardinality) |
+-------------------------------+------------+---------------------------------+
| ``x in s`` | | test *x* for membership in *s* |