summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-04-18 11:46:51 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-04-18 11:47:25 +0200
commit93c1576f17f6c5ee73f94f8de007f3c33010dc81 (patch)
tree34e1498db8ba9886647943456972cecc8897c5c3 /docs
parent356443fd956c45e66c24256edc8f673d773b6ac8 (diff)
Fixed #20282 -- Typo in WSGI docs.
Diffstat (limited to 'docs')
-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 b062036652..ad32366bf8 100644
--- a/docs/howto/deployment/wsgi/index.txt
+++ b/docs/howto/deployment/wsgi/index.txt
@@ -71,7 +71,7 @@ Applying WSGI middleware
------------------------
To apply `WSGI middleware`_ you can simply wrap the application object. For
-istance you could add these lines at the bottom of :file:`wsgi.py`::
+instance you could add these lines at the bottom of :file:`wsgi.py`::
from helloworld.wsgi import HelloWorldApplication
application = HelloWorldApplication(application)