summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-11-16 13:44:19 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-11-16 13:44:19 (GMT)
commitd456849f19fa7b00b6560b67c5388a5a6cd89d0a (patch)
treeebed3fc8547eb1c9327c26413ad9ecba82ef2c7b /Doc
parent6dab05231d91fe8260e8f68ca898bd952e6e8008 (diff)
downloadcpython-d456849f19fa7b00b6560b67c5388a5a6cd89d0a.zip
cpython-d456849f19fa7b00b6560b67c5388a5a6cd89d0a.tar.gz
cpython-d456849f19fa7b00b6560b67c5388a5a6cd89d0a.tar.bz2
Fix typo
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libsets.tex2
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
...