diff options
| author | Andrew Godwin <andrew@aeracode.org> | 2013-08-10 20:00:12 +0100 |
|---|---|---|
| committer | Andrew Godwin <andrew@aeracode.org> | 2013-08-10 20:00:12 +0100 |
| commit | 7970d97a708f0d2f4fbd654eaf785338ab04cc1e (patch) | |
| tree | 9838e4a22e20a85aa936ea06d46c80cf0e6b1262 /django/utils/datastructures.py | |
| parent | 3c3d308ea3e017868b6530df144dd1824471b6f2 (diff) | |
Docs tweaks (thanks timgraham)
Diffstat (limited to 'django/utils/datastructures.py')
| -rw-r--r-- | django/utils/datastructures.py | 2 |
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. |
