summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2008-02-13 23:28:58 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2008-02-13 23:28:58 +0000
commit7d2a8f0e18ec60e685302905403f33db4f65ce4d (patch)
tree51d6579c85020d0dcf2ef8f7c26f8b1c505720f2
parentad23fff759ed95dc9bb864913b2f3057d95e89af (diff)
Fixed #6596 -- Corrected minor typo in comment. Thanks, cbmeeks@gmail.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7109 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/db/models/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/base.py b/django/db/models/base.py
index b145d7f9d4..83b3a435bb 100644
--- a/django/db/models/base.py
+++ b/django/db/models/base.py
@@ -139,7 +139,7 @@ class Model(object):
# There is a rather weird disparity here; if kwargs, it's set, then args
# overrides it. It should be one or the other; don't duplicate the work
# The reason for the kwargs check is that standard iterator passes in by
- # args, and nstantiation for iteration is 33% faster.
+ # args, and instantiation for iteration is 33% faster.
args_len = len(args)
if args_len > len(self._meta.fields):
# Daft, but matches old exception sans the err msg.