summaryrefslogtreecommitdiff
path: root/django/utils
diff options
context:
space:
mode:
Diffstat (limited to 'django/utils')
-rw-r--r--django/utils/datastructures.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/datastructures.py b/django/utils/datastructures.py
index d61b569112..a0ee3e06ef 100644
--- a/django/utils/datastructures.py
+++ b/django/utils/datastructures.py
@@ -237,7 +237,7 @@ class SortedDict(dict):
super(SortedDict, self).clear()
self.keyOrder = []
-class SortedSet(object):
+class OrderedSet(object):
"""
A set which keeps the ordering of the inserted items.
Currently backs onto OrderedDict.