summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2017-11-10 17:24:44 -0800
committerGitHub <noreply@github.com>2017-11-10 17:24:44 -0800
commitcc6a6ed60260b0391aa38f372b26311d58edf0d6 (patch)
tree355bd73c7195912e754f238b51e58422cdde315f
parente90b5ab842f68310066b1e6bd9f0c74dd39ac1bc (diff)
parent1a928d4ce962245f2618abbc5c5594b381a7785d (diff)
downloadpyramid-cc6a6ed60260b0391aa38f372b26311d58edf0d6.tar.gz
pyramid-cc6a6ed60260b0391aa38f372b26311d58edf0d6.tar.bz2
pyramid-cc6a6ed60260b0391aa38f372b26311d58edf0d6.zip
Merge pull request #3201 from tjwudi/patch-2
Fix type
-rw-r--r--pyramid/events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/events.py b/pyramid/events.py
index d3b068bd3..93fc127a1 100644
--- a/pyramid/events.py
+++ b/pyramid/events.py
@@ -225,7 +225,7 @@ class BeforeRender(dict):
"""
Subscribers to this event may introspect and modify the set of
:term:`renderer globals` before they are passed to a :term:`renderer`.
- This event object iself has a dictionary-like interface that can be used
+ This event object itself has a dictionary-like interface that can be used
for this purpose. For example::
from pyramid.events import subscriber