summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2011-07-05 20:54:00 -0500
committerMichael Merickel <michael@merickel.org>2011-07-05 20:54:00 -0500
commit4880e19588da868f6075fc73d1f6ee1eb1e6ba6e (patch)
tree62883da3a7131003814a1ebaf04c1d185ac9e571
parent0b13e1ae46ec25722f5651c73b8510e4336dedc5 (diff)
downloadpyramid-4880e19588da868f6075fc73d1f6ee1eb1e6ba6e.tar.gz
pyramid-4880e19588da868f6075fc73d1f6ee1eb1e6ba6e.tar.bz2
pyramid-4880e19588da868f6075fc73d1f6ee1eb1e6ba6e.zip
garden
-rw-r--r--pyramid/config.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pyramid/config.py b/pyramid/config.py
index b39cb365e..bad12fc20 100644
--- a/pyramid/config.py
+++ b/pyramid/config.py
@@ -594,12 +594,12 @@ class Configurator(object):
configuration conflict by registering something with the same
configuration parameters.
- If the ``route_prefix`` argument is supplied, any calls to
+ If the ``route_prefix`` is supplied, any calls to
:meth:`pyramid.config.Configurator.add_route` within the ``callable``
- will have their pattern be prefixed by ``route_prefix``. This can
+ will have their pattern prefixed with ``route_prefix``. This can
be used to help mount a set of routes at a different location than
- the author intended while still keeping the same route names. This
- parameter is new as of Pyramid 1.x."""
+ the ``callable``-author intended while still maintaining the same
+ route names. This parameter is new as of Pyramid 1.x."""
_context = self._ctx
if _context is None: