diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-09-04 04:18:09 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-09-04 04:18:09 (GMT) |
commit | e838812c884294719f3e853af50b2aba99d12df4 (patch) | |
tree | b2f1fc6c302825c35e2863167abf22af12e78519 /Doc | |
parent | ec12f2347168af98b707c7570a0d9093b7402da5 (diff) | |
download | cpython-e838812c884294719f3e853af50b2aba99d12df4.zip cpython-e838812c884294719f3e853af50b2aba99d12df4.tar.gz cpython-e838812c884294719f3e853af50b2aba99d12df4.tar.bz2 |
correct an example
Diffstat (limited to 'Doc')
-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 5ac062a..685dd2b 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -1956,7 +1956,7 @@ An example of dictionary view usage:: >>> # set operations >>> keys & {'eggs', 'bacon', 'salad'} - {'eggs', 'bacon'} + {'bacon'} .. _bltin-file-objects: |