Skip to content

Commit d083e96

Browse files
committed
Mention client websocket support in docs index
1 parent 3b3577a commit d083e96

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs/client_websockets.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ websocket server using response's methods:
3737
3838
You can have the only websocket reader task (which can call ``yield
3939
from ws.receive()``) and multiple writer tasks which can only send
40-
data asynchronously (by ``yield from ws.send_str('data')`` for example).
40+
data asynchronously (by ``yield from ws.send_str('data')`` for
41+
example).
4142

4243

4344
ClientWebSocketResponse

docs/index.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ HTTP client/server for :term:`asyncio` (:pep:`3156`).
1515
Features
1616
--------
1717

18-
- Supports both :ref:`aiohttp-client` and :ref:`aiohttp-web`.
19-
- Supports :ref:`aiohttp-web-websockets` out-of-the-box.
18+
- Supports both :ref:`aiohttp-client` and :ref:`HTTP Server <aiohttp-web>`.
19+
- Supports both :ref:`Server WebSockets <aiohttp-web-websockets>` and
20+
:ref:`Client WebSockets <aiohttp-client-websockets>` out-of-the-box.
2021
- Web-server has :ref:`aiohttp-web-middlewares` and pluggable routing.
2122

2223
Library Installation

0 commit comments

Comments
 (0)