Skip to content

Commit cc34bfc

Browse files
committed
Fix doc references
1 parent f239ace commit cc34bfc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/web_reference.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ first positional parameter.
7171

7272
A multidict with all the variables in the query string.
7373

74-
Read-only :class:`~aiohttp.multidict.MultiDict` lazy property.
74+
Read-only :class:`~aiohttp.multidict.MultiDictProxy` lazy property.
7575

7676
.. attribute:: POST
7777

7878
A multidict with all the variables in the POST parameters.
7979
POST property available only after :meth:`Request.post` coroutine call.
8080

81-
Read-only :class:`~aiohttp.multidict.MultiDict`.
81+
Read-only :class:`~aiohttp.multidict.MultiDictProxy`.
8282

8383
:raises RuntimeError: if :meth:`Request.post` was not called \
8484
before accessing the property.
@@ -87,7 +87,7 @@ first positional parameter.
8787

8888
A case-insensitive multidict with all headers.
8989

90-
Read-only :class:`~aiohttp.multidict.CIMultiDict`
90+
Read-only :class:`~aiohttp.multidict.CIMultiDictProxy`
9191
lazy property.
9292

9393
.. attribute:: keep_alive
@@ -129,7 +129,7 @@ first positional parameter.
129129

130130
A multidict of all request's cookies.
131131

132-
Read-only :class:`~aiohttp.multidict.MultiDict` lazy property.
132+
Read-only :class:`~aiohttp.multidict.MultiDictProxy` lazy property.
133133

134134
.. attribute:: payload
135135

@@ -218,7 +218,7 @@ first positional parameter.
218218
A :ref:`coroutine <coroutine>` that reads POST parameters from
219219
request body.
220220

221-
Returns :class:`~aiohttp.multidict.MultiDict` instance filled
221+
Returns :class:`~aiohttp.multidict.MultiDictProxy` instance filled
222222
with parsed data.
223223

224224
If :attr:`method` is not *POST*, *PUT* or *PATCH* or

0 commit comments

Comments
 (0)