From c6b83db29936aa7ca60336bbb4685e17c96a8b63 Mon Sep 17 00:00:00 2001 From: eltronix Date: Wed, 27 Apr 2016 17:20:18 +0300 Subject: [PATCH] Fixed typo in docs/howto/deployment/wsgi/index.txt --- docs/howto/deployment/wsgi/index.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ``.wsgi.application``, which points to the ``application`` callable in :file:`/wsgi.py`.