[Python-checkins] cpython (2.7): issue26484 - fix the broken table in the doc about len().

gregory.p.smith python-checkins at python.org
Fri Mar 4 19:32:55 EST 2016


https://hg.python.org/cpython/rev/f7a2f81a190c
changeset:   100414:f7a2f81a190c
branch:      2.7
parent:      100407:0e3526ab6a9b
user:        Gregory P. Smith <greg at krypto.org>
date:        Fri Mar 04 16:32:36 2016 -0800
summary:
  issue26484 - fix the broken table in the doc about len().

files:
  Doc/library/sets.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/sets.rst b/Doc/library/sets.rst
--- a/Doc/library/sets.rst
+++ b/Doc/library/sets.rst
@@ -76,7 +76,7 @@
 +-------------------------------+------------+---------------------------------+
 | 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*  |

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list