From f9e8da154225fb2829fda834f934d5e268fa7c83 Mon Sep 17 00:00:00 2001 From: Greg Brown Date: Mon, 29 Sep 2014 16:40:31 +1300 Subject: [PATCH] [1.7.x] Fixed typo in docs/topics/db/managers.txt Backport of 9e8658db51 from master --- 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 f9ae66f45f6..fccda887723 100644 --- a/docs/topics/db/managers.txt +++ b/docs/topics/db/managers.txt @@ -294,7 +294,7 @@ from_queryset .. classmethod:: from_queryset(queryset_class) -For advance usage you might want both a custom ``Manager`` and a custom +For advanced usage you might want both a custom ``Manager`` and a custom ``QuerySet``. You can do that by calling ``Manager.from_queryset()`` which returns a *subclass* of your base ``Manager`` with a copy of the custom ``QuerySet`` methods::