From ede3a0da8bb9eb8230b0e3232a1cdb076b6e32ac Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Tue, 20 Aug 2002 23:34:01 +0000 Subject: [PATCH] Minor typo --- Lib/sets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/sets.py b/Lib/sets.py index 05128462ecf..5ed46d15a61 100644 --- a/Lib/sets.py +++ b/Lib/sets.py @@ -32,7 +32,7 @@ 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