فهرست منبع

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

Ebram Shehata 1 سال پیش
والد
کامیت
2152246c0a
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      docs/topics/db/managers.txt

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