From: Raymond Hettinger Date: Tue, 20 Aug 2002 23:34:01 +0000 (+0000) Subject: Minor typo X-Git-Tag: v2.3c1~4377 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ede3a0da8bb9eb8230b0e3232a1cdb076b6e32ac;p=python Minor typo --- diff --git a/Lib/sets.py b/Lib/sets.py index 05128462ec..5ed46d15a6 100644 --- a/Lib/sets.py +++ b/Lib/sets.py @@ -32,7 +32,7 @@ _TemporarilyImmutableSet -- Not a subclass of BaseSet: just a wrapper Only hashable objects can be added to a Set. In particular, you cannot really add a Set as an element to another Set; if you try, what is -actuallly added is an ImmutableSet built from it (it compares equal to +actually added is an ImmutableSet built from it (it compares equal to the one you tried adding). When you ask if `x in y' where x is a Set and y is a Set or