From 4ea46a66148be1c41ee401d3695383ba8c7b0d0a Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 31 Aug 2009 06:38:29 +0000 Subject: [PATCH] other -> others where multiple arguments are accepted. --- Doc/library/stdtypes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 3c7698fc0e2..4124952d5c5 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.