Skip to content

Commit

Permalink
Fix docs (#2078)
Browse files Browse the repository at this point in the history
`CIMultiDict` typo and links
  • Loading branch information
cockcrow authored and asvetlov committed Jul 11, 2017
1 parent 4ecb633 commit a57797c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ Response Headers
----------------

We can view the server's response :attr:`ClientResponse.headers` using
a :class:`CIMultiDictProxy`::
a :class:`~multidict.CIMultiDictProxy`::

>>> resp.headers
{'ACCESS-CONTROL-ALLOW-ORIGIN': '*',
Expand Down
4 changes: 2 additions & 2 deletions docs/client_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ The client session supports the context manager protocol for self closing.
May be either *iterable of key-value pairs* or
:class:`~collections.abc.Mapping`
(e.g. :class:`dict`,
:class:`~aiohttp.CIMultiDict`).
:class:`~multidict.CIMultiDict`).

:param skip_auto_headers: set of headers for which autogeneration
should be skipped.
Expand Down Expand Up @@ -997,7 +997,7 @@ Response object
.. attribute:: headers

A case-insensitive multidict proxy with HTTP headers of
response, :class:`CIMultiDictProxy`.
response, :class:`~multidict.CIMultiDictProxy`.

.. attribute:: raw_headers

Expand Down
4 changes: 2 additions & 2 deletions docs/web_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ and :ref:`aiohttp-web-signals` handlers.

:param rel_url: url to use, :class:`str` or :class:`~yarl.URL`

:param headers: :class:`~multidict.CIMultidict` or compatible
:param headers: :class:`~multidict.CIMultiDict` or compatible
headers container.

:return: a cloned :class:`Request` instance.
Expand Down Expand Up @@ -569,7 +569,7 @@ StreamResponse

.. attribute:: headers

:class:`~aiohttp.CIMultiiDct` instance
:class:`~multidict.CIMultiDict` instance
for *outgoing* *HTTP headers*.

.. attribute:: cookies
Expand Down

0 comments on commit a57797c

Please sign in to comment.