From: Georg Brandl Date: Mon, 31 Aug 2009 06:38:29 +0000 (+0000) Subject: other -> others where multiple arguments are accepted. X-Git-Tag: v2.7a1~606 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4ea46a66148be1c41ee401d3695383ba8c7b0d0a;p=python other -> others where multiple arguments are accepted. --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 3c7698fc0e..4124952d5c 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -1765,7 +1765,7 @@ The constructors for both classes work the same: .. method:: update(other, ...) set |= other | ... - Update the set, adding elements from *other*. + Update the set, adding elements from all others. .. versionchanged:: 2.6 Accepts multiple input iterables. @@ -1773,7 +1773,7 @@ The constructors for both classes work the same: .. method:: intersection_update(other, ...) set &= other & ... - Update the set, keeping only elements found in it and *other*. + Update the set, keeping only elements found in it and all others. .. versionchanged:: 2.6 Accepts multiple input iterables.