From 820bcd0aa3d65c389a778d62c725b34d11fcb796 Mon Sep 17 00:00:00 2001 From: Karen Tracey Date: Mon, 3 May 2010 17:14:57 +0000 Subject: [PATCH] [1.1.X] Fixed #12688 -- Removed typo in manager docs. Thanks, orokusaki for the report and timo for the patch. r12485 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@13079 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 7b5f7d147c..37d1f96d99 100644 --- a/docs/topics/db/managers.txt +++ b/docs/topics/db/managers.txt @@ -234,7 +234,7 @@ this base class:: class AbstractBase(models.Model): ... - objects = CustomerManager() + objects = CustomManager() class Meta: abstract = True