summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-06-01 05:48:38 -0400
committerTim Graham <timograham@gmail.com>2013-06-01 05:50:09 -0400
commit56192d21d5fde1b4085bb7a175e450f1e94ee962 (patch)
tree51fc26ae6ac5a97fcf5dd1bb192ef8025b85067a /docs/topics
parentf7fefb361d044cac897bff86531281b2e2ead83e (diff)
[1.5.x] Fixed #20543 - Typo in db model fields docs.
Thanks i.amber.jain@ for the report. Backport of f315693304 from master
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/db/models.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt
index c4db0d77a7..58c77bc400 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)
::