diff options
| author | Ebram Shehata <ebram96@gmail.com> | 2024-02-01 10:25:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-01 09:25:09 +0100 |
| commit | 2152246c0a4408df7716c84b20bd0fa79a31179b (patch) | |
| tree | d2bb23039127a6575ddece76e23219d5ec80960a /docs | |
| parent | 6f2c7cf6b41f9346feff0098319c302c15cef9a3 (diff) | |
Fixed typo in docs/topics/db/managers.txt.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/db/managers.txt | 4 |
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): # ... |
