From 1dafebaed1aaa81f1ba038e17c98e76d281d7378 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Fri, 24 Oct 2008 07:16:23 +0000 Subject: [PATCH] Fixed #9424 -- Typo fix. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9258 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/howto/custom-model-fields.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/howto/custom-model-fields.txt b/docs/howto/custom-model-fields.txt index 93643845ef5..2561734c4d6 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.