diff options
-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 878f0c0..7013f15 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -1740,7 +1740,7 @@ The constructors for both classes work the same: Accepts multiple input iterables. .. method:: symmetric_difference_update(other) - set ^= other | ... + set ^= other Update the set, keeping only elements found in either set, but not in both. |