summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-02-26 21:52:22 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-02-26 21:52:22 +0000
commitb21fd1e45114a5dcb62668b8d5cccd71094bee28 (patch)
treed5d17e270bf343ec0054ffa0177c1d32ad9d2850
parent96604fdf8f34a9e51d1f61a8c81ba5ef843b5ee9 (diff)
Small cleanup of docs/model-api.txt change from [4625]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4626 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/model-api.txt7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/model-api.txt b/docs/model-api.txt
index 51f4b72c22..1e7f69903d 100644
--- a/docs/model-api.txt
+++ b/docs/model-api.txt
@@ -498,10 +498,9 @@ or outside your model class altogether::
class Foo(models.Model):
gender = models.CharField(maxlength=1, choices=GENDER_CHOICES)
-For each field on your model which has ``choices`` set, Django will
-add a method to retrieve the human-readable name for the field's
-current value; see `get_FOO_display`_ in the database API
-documentation.
+For each model field that has ``choices`` set, Django will add a method to
+retrieve the human-readable name for the field's current value. See
+`get_FOO_display`_ in the database API documentation.
.. _get_FOO_display: ../db_api/#get-foo-display