From 99539ca319eb5f5fe6486c4a699f5f40da76f8e4 Mon Sep 17 00:00:00 2001 From: Luoxzhg Date: Mon, 9 Apr 2018 17:55:25 +0800 Subject: [PATCH] Fixed typo in docs/topics/db/managers.txt. --- 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 87756dc2b4..6c9e6a4163 100644 --- a/docs/topics/db/managers.txt +++ b/docs/topics/db/managers.txt @@ -214,7 +214,7 @@ appropriate for your circumstances, you can tell Django which class to use by setting :attr:`Meta.base_manager_name `. -Manager's aren't used when querying on related models. For example, if the +Base managers aren't used when querying on related models. For example, if the ``Question`` model :ref:`from the tutorial ` had a ``deleted`` field and a base manager that filters out instances with ``deleted=True``, a queryset like ``Choice.objects.filter(question__name__startswith='What')``