Commit f3156933 authored by Tim Graham's avatar Tim Graham
Browse files

Fixed #20543 - Typo in db model fields docs.

Thanks i.amber.jain@ for the report.
parent de66b567
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)

    ::