1
0
mirror of https://github.com/django/django.git synced 2025-03-25 08:40:45 +00:00

Fixed -- Typo in WSGI docs.

This commit is contained in:
Aymeric Augustin 2013-04-18 11:46:51 +02:00
parent 356443fd95
commit 93c1576f17

@ -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)