summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBert JW Regeer <bertjw@regeer.org>2016-04-10 22:16:32 -0600
committerBert JW Regeer <bertjw@regeer.org>2016-04-10 22:16:32 -0600
commit4112d67d7dd987b9b34fed9b01165c01308790b6 (patch)
treed678cb6b11065ddbb4921fa1342d5971166843af
parent20bc06ed03142bd184cb2f7322bc229e8e4dc9fa (diff)
downloadpyramid-4112d67d7dd987b9b34fed9b01165c01308790b6.tar.gz
pyramid-4112d67d7dd987b9b34fed9b01165c01308790b6.tar.bz2
pyramid-4112d67d7dd987b9b34fed9b01165c01308790b6.zip
Update doc in interfaces.py for BeforeTraversal
-rw-r--r--pyramid/interfaces.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyramid/interfaces.py b/pyramid/interfaces.py
index 298eaf303..2b00752cf 100644
--- a/pyramid/interfaces.py
+++ b/pyramid/interfaces.py
@@ -27,8 +27,8 @@ IAfterTraversal = IContextFound
class IBeforeTraversal(Interface):
"""
- An event type that is emitted whenever :app:`Pyramid` has found a route
- but before it calls any traversal or view code. See the documentation
+ An event type that is emitted after :app:`Pyramid` attempted to find a
+ route but before it calls any traversal or view code. See the documentation
attached to :class:`pyramid.events.Routefound` for more information.
"""
request = Attribute('The request object')