summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-03-06 11:40:33 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-03-06 11:40:33 +0100
commitd1a5fe07ed96794864d9aa69502ed056bb7a561b (patch)
tree1264762875e3495d2d28a04bef0d0c80fdb01a3d /docs
parent22be90dd171deebd0cf52bdd749f27b18e29a2f2 (diff)
Fixed #19994 -- Typo.
Thanks akshar for the report.
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 738774462b..b062036652 100644
--- a/docs/howto/deployment/wsgi/index.txt
+++ b/docs/howto/deployment/wsgi/index.txt
@@ -62,7 +62,7 @@ If this variable isn't set, the default :file:`wsgi.py` sets it to
run multiple Django sites in the same process. This happens with mod_wsgi.
To avoid this problem, use mod_wsgi's daemon mode with each site in its
- own daemon process, or override the value from the environnemnt by
+ own daemon process, or override the value from the environment by
enforcing ``os.environ["DJANGO_SETTINGS_MODULE"] = "mysite.settings"`` in
your :file:`wsgi.py`.