Skip to content

Commit

Permalink
Fixed #14848 - change example verbose name to match convention. thank…
Browse files Browse the repository at this point in the history
…s madisv for the suggestion.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14917 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
timgraham committed Dec 14, 2010
1 parent c314378 commit dc2a3f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/topics/db/models.txt
Expand Up @@ -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"``::

Expand Down

0 comments on commit dc2a3f8

Please sign in to comment.