From dc2a3f828007bf031b7fea07ffa78c36024de0eb Mon Sep 17 00:00:00 2001
From: Timo Graham <timograham@gmail.com>
Date: Tue, 14 Dec 2010 23:43:36 +0000
Subject: [PATCH] Fixed #14848 - change example verbose name to match
 convention. thanks madisv for the suggestion.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14917 bcc190cf-cafb-0310-a4f2-bffc1f526a37
---
 docs/topics/db/models.txt | 4 ++--
 1 file 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"``::