summaryrefslogtreecommitdiff
path: root/django/db/models/sql/where.py
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2008-06-12 03:37:13 +0000
committerAdrian Holovaty <adrian@holovaty.com>2008-06-12 03:37:13 +0000
commita08b2dd328f99c8a309bff535dab7372260144aa (patch)
treef7de187ea5b9955f2b88cf28a99b4f305674c95e /django/db/models/sql/where.py
parentdaab1f06810318cae41d20e7f1ce4aaaeb0349a9 (diff)
Negligible comment typo fixes
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7620 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/models/sql/where.py')
-rw-r--r--django/db/models/sql/where.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/sql/where.py b/django/db/models/sql/where.py
index 3e8bfed087..14e54487a3 100644
--- a/django/db/models/sql/where.py
+++ b/django/db/models/sql/where.py
@@ -18,7 +18,7 @@ class WhereNode(tree.Node):
Used to represent the SQL where-clause.
The class is tied to the Query class that created it (in order to create
- the corret SQL).
+ the correct SQL).
The children in this tree are usually either Q-like objects or lists of
[table_alias, field_name, field_class, lookup_type, value]. However, a