#12665: Dictionary view example has error in set operation
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 57a60ed..83c3bed 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2318,7 +2318,7 @@
    >>> keys & {'eggs', 'bacon', 'salad'}
    {'bacon'}
    >>> keys ^ {'sausage', 'juice'}
-   {'juice', 'eggs', 'bacon', 'spam'}
+   {'juice', 'sausage', 'bacon', 'spam'}
 
 
 .. _typememoryview: