summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authormguegnol <31782490+mguegnol@users.noreply.github.com>2025-03-23 12:02:42 -0700
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2025-03-23 20:06:09 +0100
commit45eed2c9dc5179ae18d05b535088170bf13b5c47 (patch)
tree36ce036b2eb60587743fd87658c5e209576e04c0 /docs/topics
parent280523bbd8bb0e86b02d7c1d7cbf15126d73dd46 (diff)
[5.2.x] Fixed typo in docs/topics/signals.txt.
Backport of e2b9a179133ebca9773c5c259f6a7d27489cf141 from main
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/signals.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/signals.txt b/docs/topics/signals.txt
index 339626c799..7f143c6d79 100644
--- a/docs/topics/signals.txt
+++ b/docs/topics/signals.txt
@@ -314,7 +314,7 @@ Whether synchronous or asynchronous, receivers will be correctly adapted to
whether ``send()`` or ``asend()`` is used. Synchronous receivers will be
called using :func:`~.sync_to_async` when invoked via ``asend()``. Asynchronous
receivers will be called using :func:`~.async_to_sync` when invoked via
-``sync()``. Similar to the :ref:`case for middleware <async_performance>`,
+``send()``. Similar to the :ref:`case for middleware <async_performance>`,
there is a small performance cost to adapting receivers in this way. Note that
in order to reduce the number of sync/async calling-style switches within a
``send()`` or ``asend()`` call, the receivers are grouped by whether or not