diff options
| author | Daniel Musketa <daniel@musketa.de> | 2016-11-24 11:50:39 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-11-24 05:50:39 -0500 |
| commit | df2a5227c90d60bdae154ac5acc0436a6ed1f953 (patch) | |
| tree | adc1200fc5e1257785775dfb24b4927684154ad1 /docs | |
| parent | da4c0e8cc90d8a43908524f6b85135e60582feb7 (diff) | |
Rephrased an ambiguous sentence in docs/topics/signals.txt.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/signals.txt | 5 |
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) |
