Skip to content

Commit ae9bc80

Browse files
committed
chore: cleanup
- typos fixed - useless import removed
1 parent 6fdab04 commit ae9bc80

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

AUTHORS.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Contributors
3030
* Chris Brantley
3131
* Christopher Glass
3232
* David Sanders
33+
* Emad Rad
3334
* Éric Araujo
3435
* Evan Borgstrom
3536
* Frankie Dintino

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Features
5656
* Filtering model types: ``instance_of(...)`` and ``not_instance_of(...)``
5757
* Combining querysets of different models (``qs3 = qs1 | qs2``)
5858
* Support for custom user-defined managers.
59-
* Uses the minumum amount of queries needed to fetch the inherited models.
59+
* Uses the minimum amount of queries needed to fetch the inherited models.
6060
* Disabling polymorphic behavior when needed.
6161

6262

docs/admin.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ This class implements the following features:
239239
* It allows to set :attr:`~polymorphic.admin.PolymorphicChildModelAdmin.base_form` so the derived class will automatically include other fields in the form.
240240
* It allows to set :attr:`~polymorphic.admin.PolymorphicChildModelAdmin.base_fieldsets` so the derived class will automatically display any extra fields.
241241
* Although it must be registered with admin site, by default it's hidden from admin site index page.
242-
This can be overriden by adding :attr:`~polymorphic.admin.PolymorphicChildModelAdmin.show_in_index` = ``True`` in admin class.
242+
This can be overridden by adding :attr:`~polymorphic.admin.PolymorphicChildModelAdmin.show_in_index` = ``True`` in admin class.
243243

244244

245245
.. _django-reversion: https://github.com/etianen/django-reversion

example/example/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from django.contrib import admin
2-
from django.urls import include, path, reverse_lazy
2+
from django.urls import path, reverse_lazy
33
from django.views.generic import RedirectView
44

55
admin.autodiscover()

0 commit comments

Comments
 (0)