From 93c1576f17f6c5ee73f94f8de007f3c33010dc81 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Thu, 18 Apr 2013 11:46:51 +0200 Subject: [PATCH] Fixed #20282 -- Typo in WSGI docs. --- 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 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)