summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-06-20 03:03:43 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-06-20 03:03:43 +0000
commit15cbc67ea2e41deed5ad103f922438fe21401431 (patch)
treeddee389d5dcdec653a0a3ffb5d66d2c256eca901 /tests
parentb10149b08a69076993d6de6aa14037bd3a643ee4 (diff)
Fixed #2195 -- Fixed spelling error in generic_relations model test. Other errors were fixed earlier today. Thanks, Tom Tobin
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3160 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
-rw-r--r--tests/modeltests/generic_relations/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modeltests/generic_relations/models.py b/tests/modeltests/generic_relations/models.py
index b0eea838d0..e9a81a19e8 100644
--- a/tests/modeltests/generic_relations/models.py
+++ b/tests/modeltests/generic_relations/models.py
@@ -5,7 +5,7 @@ Generic relations let an object have a foreign key to any object through a
content-type/object-id field. A generic foreign key can point to any object,
be it animal, vegetable, or mineral.
-The cannonical example is tags (although this example implementation is *far*
+The canonical example is tags (although this example implementation is *far*
from complete).
"""