summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasey Duncan <casey.duncan@gmail.com>2010-12-08 21:23:36 -0800
committerCasey Duncan <casey.duncan@gmail.com>2010-12-08 21:23:36 -0800
commite1b3ca9aed88bd994865d07fbc0ffd5e7f0ada71 (patch)
tree6c90935e1f44e7c17a1622b4a738a6ab2d84360a
parentd00dfb7a4b8adb8136c6d0b22897f11ec4dfe144 (diff)
downloadpyramid-e1b3ca9aed88bd994865d07fbc0ffd5e7f0ada71.tar.gz
pyramid-e1b3ca9aed88bd994865d07fbc0ffd5e7f0ada71.tar.bz2
pyramid-e1b3ca9aed88bd994865d07fbc0ffd5e7f0ada71.zip
avoid using word mount which has too many other connotations, puritanism notwithstanding
-rw-r--r--docs/narr/static.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/narr/static.rst b/docs/narr/static.rst
index b6ed5b2ba..be29fc095 100644
--- a/docs/narr/static.rst
+++ b/docs/narr/static.rst
@@ -205,7 +205,7 @@ The :class:`pyramid.view.static` helper class is used to perform
this task. This class creates an object that is capable acting as a
:app:`Pyramid` view callable which serves static resources from a
directory. For instance, to serve files within a directory located on
-your filesystem at ``/path/to/static/dir`` mounted at the URL path
+your filesystem at ``/path/to/static/dir`` from the URL path
``/static`` in your application, create an instance of the
:class:`pyramid.view.static` class inside a ``static.py`` file in
your application root as below.