]> granicus.if.org Git - python/commitdiff
other -> others where multiple arguments are accepted.
authorGeorg Brandl <georg@python.org>
Mon, 31 Aug 2009 06:38:29 +0000 (06:38 +0000)
committerGeorg Brandl <georg@python.org>
Mon, 31 Aug 2009 06:38:29 +0000 (06:38 +0000)
Doc/library/stdtypes.rst

index 3c7698fc0e2d076cbe9216876b70626139cbe73b..4124952d5c5a229041a2f9cbc2312fe40c495541 100644 (file)
@@ -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.