summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Graham <timograham@gmail.com>2010-12-14 23:44:28 +0000
committerTimo Graham <timograham@gmail.com>2010-12-14 23:44:28 +0000
commit38c88f7c2a0e4a7851f178cf91ab451624e37bd7 (patch)
treee9c48c46c8e0690738757903da9ab1f2197e8a93
parent642ba981e10678051e69051f5bee5a587fa00947 (diff)
[1.2.X] Fixed #14848 - change example verbose name to match convention. thanks madisv for the suggestion.
Backport of r14917 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14918 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/topics/db/models.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt
index da70a0bdf6..2a19cbdd8f 100644
--- a/docs/topics/db/models.txt
+++ b/docs/topics/db/models.txt
@@ -253,9 +253,9 @@ argument -- a verbose name. If the verbose name isn't given, Django will
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"``::