mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
[1.5.x] Fixed #20543 - Typo in db model fields docs.
Thanks i.amber.jain@ for the report.
Backport of f315693304
from master
This commit is contained in:
parent
f7fefb361d
commit
56192d21d5
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
||||
::
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue