summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Musketa <daniel@musketa.de>2016-11-24 11:50:39 +0100
committerTim Graham <timograham@gmail.com>2016-11-24 05:52:43 -0500
commit471d72f81fe23d800df8c0d6eb8857b3aa8d9225 (patch)
tree20b4e08d0589a54a92547d6334275716008db99c
parent4f4d1a71d3a04d19b1e46f190fbafd88f3ddecf7 (diff)
downloaddjango-471d72f81fe23d800df8c0d6eb8857b3aa8d9225.tar.gz
[1.10.x] Rephrased an ambiguous sentence in docs/topics/signals.txt.
Backport of df2a5227c90d60bdae154ac5acc0436a6ed1f953 from master
-rw-r--r--docs/topics/signals.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/topics/signals.txt b/docs/topics/signals.txt
index 179ac04819..19c0cd3d33 100644
--- a/docs/topics/signals.txt
+++ b/docs/topics/signals.txt
@@ -47,8 +47,9 @@ You can also `define and send your own custom signals`_; see below.
Listening to signals
====================
-To receive a signal, you need to register a *receiver* function that gets
-called when the signal is sent by using the :meth:`Signal.connect` method:
+To receive a signal, register a *receiver* function using the
+:meth:`Signal.connect` method. The receiver function is called when the signal
+is sent.
.. method:: Signal.connect(receiver, sender=None, weak=True, dispatch_uid=None)