Author: timo
Date: 2010-12-14 17:43:36 -0600 (Tue, 14 Dec 2010)
New Revision: 14917

Modified:
   django/trunk/docs/topics/db/models.txt
Log:
Fixed #14848 - change example verbose name to match convention. thanks madisv 
for the suggestion.

Modified: django/trunk/docs/topics/db/models.txt
===================================================================
--- django/trunk/docs/topics/db/models.txt      2010-12-14 23:34:47 UTC (rev 
14916)
+++ django/trunk/docs/topics/db/models.txt      2010-12-14 23:43:36 UTC (rev 
14917)
@@ -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.

Reply via email to