summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBert JW Regeer <bertjw@regeer.org>2019-05-18 00:30:36 -0600
committerBert JW Regeer <bertjw@regeer.org>2020-11-28 12:19:52 -0800
commit884d5910f9d912f4a85c9b8b66fe35a1d6da5375 (patch)
tree2c52cb2e51a88a6bf7e94676945a88915a00f0a9 /src
parent82c1b078fc4649e900e78234cf2e140a38e4f6b4 (diff)
downloadwebob-884d5910f9d912f4a85c9b8b66fe35a1d6da5375.tar.gz
Cleanup documentation
Diffstat (limited to 'src')
-rw-r--r--src/webob/multidict.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/webob/multidict.py b/src/webob/multidict.py
index b7334e0..98f5771 100644
--- a/src/webob/multidict.py
+++ b/src/webob/multidict.py
@@ -41,7 +41,7 @@ class MultiDict(MutableMapping):
@classmethod
def view_list(cls, lst):
"""
- Create a dict that is a view on the given list
+ Create a multidict that is a view on the given list
"""
if not isinstance(lst, list):
@@ -57,7 +57,7 @@ class MultiDict(MutableMapping):
@classmethod
def from_fieldstorage(cls, fs):
"""
- Create a dict from a cgi.FieldStorage instance
+ Create a multidict from a cgi.FieldStorage instance
"""
obj = cls()
# fs.list can be None when there's nothing to parse