Skip to content

Commit feea643

Browse files
authored
Merge pull request #685 from bckohan/master
fix docs errors
2 parents c541020 + a5925e7 commit feea643

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ v4.3.0 (202X-XX-XX)
55
-------------------
66

77
* Implemented `Include get_child_inlines() hook in stacked inline admin forms. <https://github.com/jazzband/django-polymorphic/pull/681>`_
8-
* Fixed `"multi-database support in inheritance accessors. <https://github.com/jazzband/django-polymorphic/pull/550>`_
8+
* Fixed `multi-database support in inheritance accessors. <https://github.com/jazzband/django-polymorphic/pull/550>`_
99
* Fixed `Caching in inheritance accessor functions <https://github.com/jazzband/django-polymorphic/pull/510>`_
1010
* Fixed `Foreign key resolves to parent class when using abstract models <https://github.com/jazzband/django-polymorphic/issues/437>`_
1111
* Fixed `Support Q expressions that contain subquery expressions <https://github.com/jazzband/django-polymorphic/pull/572>`_

src/polymorphic/admin/inlines.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ def get_child_inlines(self):
8282
Return the derived inline classes which this admin should handle.
8383
8484
This should return an iterable of
85-
:class:`~polymorphic.admin.inlines.PolymorphicInlineModelAdmin.Child classes,
86-
to override :attr:`child_inlines.
85+
:class:`~polymorphic.admin.inlines.PolymorphicInlineModelAdmin.Child` classes,
86+
to override :attr:`~polymorphic.admin.inlines.PolymorphicInlineModelAdmin.child_inlines`.
8787
"""
8888
return self.child_inlines or []
8989

0 commit comments

Comments
 (0)