diff options
| author | Gregory P. Smith <greg@krypto.org> | 2016-02-08 17:59:00 (GMT) |
|---|---|---|
| committer | Gregory P. Smith <greg@krypto.org> | 2016-02-08 17:59:00 (GMT) |
| commit | b8e5eb31eaacc062a19a02e5778675e4ed2d3a3b (patch) | |
| tree | f548a8854a15400c942f70cd01c0442181ed36bc | |
| parent | a74826b086bfadf1ad6965ed9352517dfe84daa9 (diff) | |
| parent | e27403b75f4cae15650292d6735b917fed3e9a8f (diff) | |
| download | cpython-b8e5eb31eaacc062a19a02e5778675e4ed2d3a3b.zip cpython-b8e5eb31eaacc062a19a02e5778675e4ed2d3a3b.tar.gz cpython-b8e5eb31eaacc062a19a02e5778675e4ed2d3a3b.tar.bz2 | |
Clarify "cardinality of" as "number of elements in" as many readers do
not have a math vocabulary.
| -rw-r--r-- | Doc/library/stdtypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 774b0c6..e491fd2 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -3828,7 +3828,7 @@ The constructors for both classes work the same: .. describe:: len(s) - Return the cardinality of set *s*. + Return the number of elements in set *s* (cardinality of *s*). .. describe:: x in s |
