summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2013-01-16 00:58:47 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2013-01-16 00:58:47 +0200
commitb9a6b35ec0e828f8377ddb80479690ff60495f45 (patch)
tree0655a00e820b772bfc3a26211d224bb1a770d12c
parentd5402139717073969d347b4e2d677267d33dfc53 (diff)
downloadpyramid-b9a6b35ec0e828f8377ddb80479690ff60495f45.tar.gz
pyramid-b9a6b35ec0e828f8377ddb80479690ff60495f45.tar.bz2
pyramid-b9a6b35ec0e828f8377ddb80479690ff60495f45.zip
add missing comma
-rw-r--r--pyramid/interfaces.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/interfaces.py b/pyramid/interfaces.py
index b176d49fb..54bce6fd2 100644
--- a/pyramid/interfaces.py
+++ b/pyramid/interfaces.py
@@ -460,7 +460,7 @@ class IAuthorizationPolicy(Interface):
class IMultiDict(IDict): # docs-only interface
"""
An ordered dictionary that can have multiple values for each key. A
- multidict adds the methods ``getall``, ``getone``, ``mixed``, ``extend``
+ multidict adds the methods ``getall``, ``getone``, ``mixed``, ``extend``,
``add``, and ``dict_of_lists`` to the normal dictionary interface. A
multidict data structure is used as ``request.POST``, ``request.GET``,
and ``request.params`` within an :app:`Pyramid` application.