From ec2ee4fc62212f9c58cfa28884c1d894fa15b23d Mon Sep 17 00:00:00 2001
From: Gary Wilson Jr <gary.wilson@gmail.com>
Date: Tue, 12 Aug 2008 14:19:32 +0000
Subject: [PATCH] Minor correction for [8325].

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8326 bcc190cf-cafb-0310-a4f2-bffc1f526a37
---
 tests/modeltests/custom_columns/models.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/modeltests/custom_columns/models.py b/tests/modeltests/custom_columns/models.py
index 3be31339ce..74691cd1bc 100644
--- a/tests/modeltests/custom_columns/models.py
+++ b/tests/modeltests/custom_columns/models.py
@@ -11,7 +11,7 @@ query the database.
 
 If you need to use a table name for a many-to-many relationship that differs
 from the default generated name, use the ``db_table`` parameter on the
-``ManyToMany`` field. This has no effect on the API for querying the database.
+``ManyToManyField``. This has no effect on the API for querying the database.
 
 """