From 2152246c0a4408df7716c84b20bd0fa79a31179b Mon Sep 17 00:00:00 2001 From: Ebram Shehata Date: Thu, 1 Feb 2024 10:25:09 +0200 Subject: [PATCH] Fixed typo in docs/topics/db/managers.txt. --- docs/topics/db/managers.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/topics/db/managers.txt b/docs/topics/db/managers.txt index 61de153898..3a7a635e49 100644 --- a/docs/topics/db/managers.txt +++ b/docs/topics/db/managers.txt @@ -380,8 +380,8 @@ this base class:: class Meta: abstract = True -If you use this directly in a subclass, ``objects`` will be the default -manager if you declare no managers in the base class:: +If you use this directly in a child class, ``objects`` will be the default +manager if you declare no managers in the child class:: class ChildA(AbstractBase): # ...