Commit 38c88f7c authored by Timo Graham's avatar Timo Graham
Browse files

[1.2.X] Fixed #14848 - change example verbose name to match convention. thanks...

[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
parent 642ba981
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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"``::