diff options
author | Raymond Hettinger <python@rcn.com> | 2003-11-16 13:44:19 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-11-16 13:44:19 (GMT) |
commit | d456849f19fa7b00b6560b67c5388a5a6cd89d0a (patch) | |
tree | ebed3fc8547eb1c9327c26413ad9ecba82ef2c7b /Doc/lib/libsets.tex | |
parent | 6dab05231d91fe8260e8f68ca898bd952e6e8008 (diff) | |
download | cpython-d456849f19fa7b00b6560b67c5388a5a6cd89d0a.zip cpython-d456849f19fa7b00b6560b67c5388a5a6cd89d0a.tar.gz cpython-d456849f19fa7b00b6560b67c5388a5a6cd89d0a.tar.bz2 |
Fix typo
Diffstat (limited to 'Doc/lib/libsets.tex')
-rw-r--r-- | Doc/lib/libsets.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libsets.tex b/Doc/lib/libsets.tex index 8551ab6..5f98967 100644 --- a/Doc/lib/libsets.tex +++ b/Doc/lib/libsets.tex @@ -186,7 +186,7 @@ False >>> employees.union_update(engineers) # update from another set >>> employees.issuperset(engineers) True ->>> for group in [engineers, programmers, management, employees]: +>>> for group in [engineers, programmers, managers, employees]: ... group.discard('Susan') # unconditionally remove element ... print group ... |