summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEbram Shehata <ebram96@gmail.com>2024-02-01 10:25:09 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2024-02-01 09:26:24 +0100
commit58d5e5779c6b079f1a36e537a3fc2ebc446a721a (patch)
tree0be6724b00bf9c40d7005b691fb6eac0796f9649
parenta8f9c29d4bf1387bf1ede03a173dd7bfed3e2ce0 (diff)
[5.0.x] Fixed typo in docs/topics/db/managers.txt.
Backport of 2152246c0a4408df7716c84b20bd0fa79a31179b from main
-rw-r--r--docs/topics/db/managers.txt4
1 files 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):
# ...