summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-03-16 15:10:48 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-03-16 15:10:48 +0000
commitc3f91bb2b15df954a4855a2e35c4f8cfcd337175 (patch)
treebde859422815518e451ab73dc94441e9bfe1cf66 /django
parent64fae18505f96970d7df9722f0a67ee429dc3fa0 (diff)
Fixed spelling of initializing in datastructures.py comment
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4744 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
-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 e924e4edbc..7b7fa2b0f0 100644
--- a/django/utils/datastructures.py
+++ b/django/utils/datastructures.py
@@ -94,7 +94,7 @@ class SortedDict(dict):
def copy(self):
"Returns a copy of this object."
- # This way of initialising the copy means it works for subclasses, too.
+ # This way of initializing the copy means it works for subclasses, too.
obj = self.__class__(self)
obj.keyOrder = self.keyOrder
return obj