Skip to content

Commit 5949056

Browse files
authored
Fix broken RST links in README and update outdated docs (#794)
1 parent 0b9b932 commit 5949056

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGES/794.doc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fixed broken RST hyperlinks in README, added missing ``await`` in docs code example, and updated outdated Python and frozenlist version requirements in documentation to match ``setup.cfg``.

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ The only available operation is calling the previously registered
4444
callbacks by using ``await sig.send(data)``.
4545

4646
For concrete usage examples see the `Signals
47-
<https://docs.aiohttp.org/en/stable/web_advanced.html#aiohttp-web-signals>
47+
<https://docs.aiohttp.org/en/stable/web_advanced.html#aiohttp-web-signals>`_
4848
section of the `Web Server Advanced
49-
<https://docs.aiohttp.org/en/stable/web_advanced.html>` chapter of the `aiohttp
49+
<https://docs.aiohttp.org/en/stable/web_advanced.html>`_ chapter of the `aiohttp
5050
documentation`_.
5151

5252

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The callback parameters, which should be passed in the ``.send()`` call, can be
1919
specified for a type checker::
2020

2121
signal = Signal[int, str](owner)
22-
signal.send(42, "foo")
22+
await signal.send(42, "foo")
2323

2424

2525
For concrete usage examples see the :ref:`aiohttp:aiohttp-web-signals` section of the :doc:`aiohttp:web_advanced` chapter of the :doc:`aiohttp documentation <aiohttp:index>`.

0 commit comments

Comments
 (0)