summaryrefslogtreecommitdiff
path: root/docs/model-api.txt
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2007-01-03 14:29:21 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2007-01-03 14:29:21 +0000
commit3d38e5d8406eba16615ccdda32c346676e26f1ff (patch)
tree0a49edebd0377c18b874ee11b7f86886349e25e1 /docs/model-api.txt
parente1c6e987d07efb3ee9471e63541f9561b461ea44 (diff)
Fixed #3223 -- Fixed typo in model API docs. Thanks, David van Mosselbeen.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4276 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/model-api.txt')
-rw-r--r--docs/model-api.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/model-api.txt b/docs/model-api.txt
index 1aa8c811f4..725ec52141 100644
--- a/docs/model-api.txt
+++ b/docs/model-api.txt
@@ -94,7 +94,7 @@ Django places only two restrictions on model field names:
the way Django's query lookup syntax works. For example::
class Example(models.Model):
- foo__bar = models.IntegerField() 'foo__bar' has two underscores!
+ foo__bar = models.IntegerField() # 'foo__bar' has two underscores!
These limitations can be worked around, though, because your field name doesn't
necessarily have to match your database column name. See `db_column`_ below.