summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pyramid/url.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/url.py b/pyramid/url.py
index 2a6fda89a..548d5e9d9 100644
--- a/pyramid/url.py
+++ b/pyramid/url.py
@@ -404,7 +404,7 @@ def current_route_url(request, *elements, **kw):
``/foo/1``.
If the 'current route' has the route pattern ``/foo/{page}`` and the
- current current url path is ``/foo/1``, the matchdict will be
+ current url path is ``/foo/1``, the matchdict will be
``{'page':'1'}``. The result of ``current_route_url(request, page='2')``
in this situation will be ``/foo/2``.