summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2014-02-08 14:34:20 -0500
committerChris McDonough <chrism@plope.com>2014-02-08 14:34:20 -0500
commitd867f09ca8561fbd25319a8906e1606e11fa40d2 (patch)
tree7c759dbc8ec6a0b559517e91fe7cdeea4d5a0efe
parent2c205f7477275f47fcf59ddcf755697fb695fc8e (diff)
parent896c7730b3d8bd95b9767866f3e6105b1862b24d (diff)
downloadpyramid-d867f09ca8561fbd25319a8906e1606e11fa40d2.tar.gz
pyramid-d867f09ca8561fbd25319a8906e1606e11fa40d2.tar.bz2
pyramid-d867f09ca8561fbd25319a8906e1606e11fa40d2.zip
Merge branch 'master' of github.com:Pylons/pyramid
-rw-r--r--pyramid/config/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/config/views.py b/pyramid/config/views.py
index 72dc3f414..cdad7e85e 100644
--- a/pyramid/config/views.py
+++ b/pyramid/config/views.py
@@ -916,7 +916,7 @@ class ViewsConfiguratorMixin(object):
A view declaration with this argument ensures that the view will
only be called when the :term:`request` has key/value pairs in its
:term:`matchdict` that equal those supplied in the predicate.
- e.g. ``match_param="action=edit" would require the ``action``
+ e.g. ``match_param="action=edit"`` would require the ``action``
parameter in the :term:`matchdict` match the right hand side of
the expression (``edit``) for the view to "match" the current
request.