From: Georg Brandl Date: Sun, 30 Aug 2009 11:51:53 +0000 (+0000) Subject: #6801: fix copy-paste oversight. X-Git-Tag: v2.7a1~607 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7d65fbfed422b2fcf44862d11fbc60bb9f8821eb;p=python #6801: fix copy-paste oversight. --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 7e31b63aa4..3c7698fc0e 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -1787,7 +1787,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.