Author: timo Date: 2010-12-14 17:44:28 -0600 (Tue, 14 Dec 2010) New Revision: 14918
Modified: django/branches/releases/1.2.X/docs/topics/db/models.txt Log: [1.2.X] Fixed #14848 - change example verbose name to match convention. thanks madisv for the suggestion. Backport of r14917 from trunk. Modified: django/branches/releases/1.2.X/docs/topics/db/models.txt =================================================================== --- django/branches/releases/1.2.X/docs/topics/db/models.txt 2010-12-14 23:43:36 UTC (rev 14917) +++ django/branches/releases/1.2.X/docs/topics/db/models.txt 2010-12-14 23:44:28 UTC (rev 14918) @@ -253,9 +253,9 @@ automatically create it using the field's attribute name, converting underscores to spaces. -In this example, the verbose name is ``"Person's first name"``:: +In this example, the verbose name is ``"person's first name"``:: - first_name = models.CharField("Person's first name", max_length=30) + first_name = models.CharField("person's first name", max_length=30) In this example, the verbose name is ``"first name"``:: -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to django-upda...@googlegroups.com. To unsubscribe from this group, send email to django-updates+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.