1
0
mirror of https://github.com/django/django.git synced 2025-01-03 06:55:47 +00:00

Fixed typo in docs/topics/db/managers.txt.

This commit is contained in:
Ebram Shehata 2024-02-01 10:25:09 +02:00 committed by GitHub
parent 6f2c7cf6b4
commit 2152246c0a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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):
# ...