summaryrefslogtreecommitdiff
path: root/docs/howto
diff options
context:
space:
mode:
authoreltronix <lt.eltronix@gmail.com>2016-04-27 17:20:18 +0300
committerTim Graham <timograham@gmail.com>2016-04-27 10:31:16 -0400
commit3f93f8d8e38612b326f616cce518f71d06a157eb (patch)
treebe4f6e5da4dde6ee39f9c16142d4ac48ae5a1222 /docs/howto
parent146ac71a2185c280c1b5d73fc6ec807e35c97722 (diff)
[1.9.x] Fixed typo in docs/howto/deployment/wsgi/index.txt
Backport of c6b83db29936aa7ca60336bbb4685e17c96a8b63 from master
Diffstat (limited to 'docs/howto')
-rw-r--r--docs/howto/deployment/wsgi/index.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/deployment/wsgi/index.txt b/docs/howto/deployment/wsgi/index.txt
index 2579df0c6a..214ebc54a4 100644
--- a/docs/howto/deployment/wsgi/index.txt
+++ b/docs/howto/deployment/wsgi/index.txt
@@ -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`.