From 98101787067dd6fd9e7bf2c852bb403615cdd9e3 Mon Sep 17 00:00:00 2001 From: Justin Bronn Date: Mon, 22 Feb 2010 02:35:47 +0000 Subject: [PATCH] Fixed #12688 -- Removed typo in manager docs. Thanks, orokusaki for the report and timo for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12485 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/db/managers.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/db/managers.txt b/docs/topics/db/managers.txt index 9b7419759f3..d7f5569c91c 100644 --- a/docs/topics/db/managers.txt +++ b/docs/topics/db/managers.txt @@ -235,7 +235,7 @@ this base class:: class AbstractBase(models.Model): ... - objects = CustomerManager() + objects = CustomManager() class Meta: abstract = True