Index: howto/deployment/modwsgi.txt
===================================================================
--- howto/deployment/modwsgi.txt	(revisión: 16366)
+++ howto/deployment/modwsgi.txt	(working copy)
@@ -47,13 +47,13 @@
 
 If your project is not on your ``PYTHONPATH`` by default you can add::
 
-    path = '/path/to/mysite'
+    path = '/path/to/parent/dir/of/site'
     if path not in sys.path:
         sys.path.append(path)
 
 just below the ``import sys`` line to place your project on the path. Remember to
-replace 'mysite.settings' with your correct settings file, and '/path/to/mysite'
-with your own project's location.
+replace 'mysite.settings' with your correct settings file, and '/path/to/parent/dir/of/site'
+with your own parent directory of the project's location.
 
 .. _serving-media-files:
 
