summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJustin Bronn <jbronn@gmail.com>2010-02-22 02:35:47 +0000
committerJustin Bronn <jbronn@gmail.com>2010-02-22 02:35:47 +0000
commit98101787067dd6fd9e7bf2c852bb403615cdd9e3 (patch)
treef261a02871eda00c11f430e414bebddb10e32d1a /docs
parent84cffa2ecea8b52508af31281c197f1edbbb6e85 (diff)
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
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/managers.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/managers.txt b/docs/topics/db/managers.txt
index 9b7419759f..d7f5569c91 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