summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-10-24 07:21:04 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-10-24 07:21:04 +0000
commit8158bd9380dd1ee8aae39140d88c33f916b8b803 (patch)
treec8f5fb7cc76d6a41eb9b487a729a03efd044c756 /docs
parent8cf2a05d35a3f2a296393b8eb83f7db272bf3ad8 (diff)
[1.0.X] Fixed #9424 -- Typo fix.
Backport of r9258 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9262 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/custom-model-fields.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/custom-model-fields.txt b/docs/howto/custom-model-fields.txt
index 93643845ef..2561734c4d 100644
--- a/docs/howto/custom-model-fields.txt
+++ b/docs/howto/custom-model-fields.txt
@@ -167,7 +167,7 @@ behave like any existing field, so we'll subclass directly from
kwargs['max_length'] = 104
super(HandField, self).__init__(*args, **kwargs)
-Our ``HandField`` accept most of the standard field options (see the list
+Our ``HandField`` accepts most of the standard field options (see the list
below), but we ensure it has a fixed length, since it only needs to hold 52
card values plus their suits; 104 characters in total.