Skip to content

Commit

Permalink
Fixed #20543 - Typo in db model fields docs.
Browse files Browse the repository at this point in the history
Thanks i.amber.jain@ for the report.
  • Loading branch information
timgraham committed Jun 1, 2013
1 parent de66b56 commit f315693
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/topics/db/models.txt
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,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)

::

Expand Down

0 comments on commit f315693

Please sign in to comment.