From e838812c884294719f3e853af50b2aba99d12df4 Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Thu, 4 Sep 2008 04:18:09 +0000 Subject: [PATCH] correct an example --- Doc/library/stdtypes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 5ac062a52c..685dd2b2bb 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: -- 2.40.0