summaryrefslogtreecommitdiffstats
path: root/Lib/sets.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/sets.py')
-rw-r--r--Lib/sets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sets.py b/Lib/sets.py
index 0512846..5ed46d1 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