From c3f91bb2b15df954a4855a2e35c4f8cfcd337175 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 16 Mar 2007 15:10:48 +0000 Subject: [PATCH] Fixed spelling of initializing in datastructures.py comment git-svn-id: http://code.djangoproject.com/svn/django/trunk@4744 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/utils/datastructures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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