Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES/794.doc
Original file line number Diff line number Diff line change
@@ -0,0 +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``.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ The only available operation is calling the previously registered
callbacks by using ``await sig.send(data)``.

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


Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The callback parameters, which should be passed in the ``.send()`` call, can be
specified for a type checker::

signal = Signal[int, str](owner)
signal.send(42, "foo")
await signal.send(42, "foo")


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>`.
Expand Down