From 56192d21d5fde1b4085bb7a175e450f1e94ee962 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sat, 1 Jun 2013 05:48:38 -0400 Subject: [PATCH] [1.5.x] Fixed #20543 - Typo in db model fields docs. Thanks i.amber.jain@ for the report. Backport of f315693304 from master --- docs/topics/db/models.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt index c4db0d77a73..58c77bc4006 100644 --- a/docs/topics/db/models.txt +++ b/docs/topics/db/models.txt @@ -180,7 +180,7 @@ ones: ('L', 'Large'), ) name = models.CharField(max_length=60) - shirt_size = models.CharField(max_length=2, choices=SHIRT_SIZES) + shirt_size = models.CharField(max_length=1, choices=SHIRT_SIZES) ::