summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Brown <greg@gregbrown.co.nz>2014-09-29 16:40:31 +1300
committerTim Graham <timograham@gmail.com>2014-09-29 07:46:24 -0400
commitf9e8da154225fb2829fda834f934d5e268fa7c83 (patch)
tree014ecbc84967f3026a2e90b791b44a78e1815b9f
parent7355885ef504cc34f447311741511018f777667f (diff)
[1.7.x] Fixed typo in docs/topics/db/managers.txt
Backport of 9e8658db51 from master
-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 f9ae66f45f..fccda88772 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::