mirror of
https://github.com/jazzband/django-downloadview.git
synced 2026-03-16 22:40:25 +00:00
docs: Fix simple typo, instanciate -> instantiate
There is a small typo in django_downloadview/middlewares.py. Should read `instantiate` rather than `instanciate`.
This commit is contained in:
parent
cd37fd5084
commit
e2da75ec9d
1 changed files with 2 additions and 2 deletions
|
|
@ -128,12 +128,12 @@ class SmartDownloadMiddleware(BaseDownloadMiddleware):
|
|||
#: :class:`DownloadDispatcher` instance that can hold multiple
|
||||
#: backend instances.
|
||||
self.dispatcher = DownloadDispatcherMiddleware(middlewares=[])
|
||||
#: Callable (typically a class) to instanciate backend (typically a
|
||||
#: Callable (typically a class) to instantiate backend (typically a
|
||||
#: :class:`DownloadMiddleware` subclass).
|
||||
self.backend_factory = backend_factory
|
||||
if self.backend_factory is AUTO_CONFIGURE:
|
||||
self.auto_configure_backend_factory()
|
||||
#: List of positional or keyword arguments to instanciate backend
|
||||
#: List of positional or keyword arguments to instantiate backend
|
||||
#: instances.
|
||||
self.backend_options = backend_options
|
||||
if self.backend_options is AUTO_CONFIGURE:
|
||||
|
|
|
|||
Loading…
Reference in a new issue