summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2011-07-31 09:35:53 -0600
committerMichael Merickel <michael@merickel.org>2011-07-31 09:36:57 -0600
commitbe03f74bea45854fec8aabca9407ca983c65111f (patch)
tree879b925dc53269f8489f6e8cddff4d4fc5ce196c
parent95a3791409f4a936c47e7018e75f14fc3b701380 (diff)
downloadpyramid-be03f74bea45854fec8aabca9407ca983c65111f.tar.gz
pyramid-be03f74bea45854fec8aabca9407ca983c65111f.tar.bz2
pyramid-be03f74bea45854fec8aabca9407ca983c65111f.zip
Fixed a spelling mistake in ISession.
-rw-r--r--pyramid/interfaces.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyramid/interfaces.py b/pyramid/interfaces.py
index a06cb7e52..5ef11b1cf 100644
--- a/pyramid/interfaces.py
+++ b/pyramid/interfaces.py
@@ -777,13 +777,13 @@ class ISession(Interface):
""" Pop a queue from the flash storage. The queue is removed from
flash storage after this message is called. The queue is returned;
it is a list of flash messages added by
- :meth:`pyramid.interfaces.ISesssion.flash`"""
+ :meth:`pyramid.interfaces.ISession.flash`"""
def peek_flash(queue=''):
""" Peek at a queue in the flash storage. The queue remains in
flash storage after this message is called. The queue is returned;
it is a list of flash messages added by
- :meth:`pyramid.interfaces.ISesssion.flash`
+ :meth:`pyramid.interfaces.ISession.flash`
"""
def new_csrf_token():