summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorM Somerville <dracos@users.noreply.github.com>2017-01-11 23:31:11 +0000
committerTim Graham <timograham@gmail.com>2017-01-11 18:31:11 -0500
commit56c87b51abca51c90cb5f2c10ec2def583bb92ad (patch)
tree44a24a422e6b02ffebde5b25219e9f192acaf04e
parentf3b7c059367a4e82bbfc7e4f0d42b10975e79f0c (diff)
Fixed typo in docs/topics/db/managers.txt.
-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 7ae6dc7b04..2867db02d9 100644
--- a/docs/topics/db/managers.txt
+++ b/docs/topics/db/managers.txt
@@ -230,7 +230,7 @@ retrieved.
If you override the ``get_queryset()`` method and filter out any rows, Django
will return incorrect results. Don't do that. A manager that filters results
-in ``get_queryset()`` is not appropriate for use as a default manager.
+in ``get_queryset()`` is not appropriate for use as a base manager.
.. _calling-custom-queryset-methods-from-manager: