summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2008-08-25 19:29:10 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2008-08-25 19:29:10 +0000
commit018057d8d1f7dcf5390783c7b32201a12ff276df (patch)
treeaa00324edfc94ff36c40e4eae3106e38b8f0597e /docs
parenta16988450531aeae9c70e7035311426a91f6d5b9 (diff)
Fixed a bad link in topics/db/models.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8553 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/models.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt
index b328a34803..af20f55d8c 100644
--- a/docs/topics/db/models.txt
+++ b/docs/topics/db/models.txt
@@ -40,9 +40,8 @@ This example model defines a ``Person``, which has a ``first_name`` and
first_name = models.CharField(max_length=30)
last_name = models.CharField(max_length=30)
-``first_name`` and ``last_name`` are :ref:`fields` of the model. Each
-field is specified as a class attribute, and each attribute maps to a database
-column.
+``first_name`` and ``last_name`` are fields_ of the model. Each field is
+specified as a class attribute, and each attribute maps to a database column.
The above ``Person`` model would create a database table like this: