[1.9.x] Fixed typo in docs/howto/deployment/wsgi/index.txt

Backport of c6b83db29936aa7ca60336bbb4685e17c96a8b63 from master
This commit is contained in:
eltronix 2016-04-27 17:20:18 +03:00 committed by Tim Graham
parent 146ac71a21
commit 3f93f8d8e3

View File

@ -37,7 +37,7 @@ deployments.
WSGI servers obtain the path to the ``application`` callable from their
configuration. Django's built-in server, namely the :djadmin:`runserver`
command, read it from the :setting:`WSGI_APPLICATION` setting. By default, it's
command, reads it from the :setting:`WSGI_APPLICATION` setting. By default, it's
set to ``<project_name>.wsgi.application``, which points to the ``application``
callable in :file:`<project_name>/wsgi.py`.