summaryrefslogtreecommitdiff
path: root/django/dispatch
diff options
context:
space:
mode:
authorJarek Glowacki <jarekwg@outlook.com>2016-01-12 12:46:07 +1100
committerTim Graham <timograham@gmail.com>2016-01-12 08:27:55 -0500
commit4da682cb4598fdc36d6a069109476ce822d45b72 (patch)
treef70c59d502f4a55c6d3a1b3dfeb5c34e4be6c0cf /django/dispatch
parent1cbc556bcee57c1d2cbbbe3e6ce3b8d9949f186f (diff)
[1.9.x] Corrected a few typos in Signal.send() docstring.
Backport of c68ce18712f5896fa9ab95afd69d590212f3c398 from master
Diffstat (limited to 'django/dispatch')
-rw-r--r--django/dispatch/dispatcher.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/django/dispatch/dispatcher.py b/django/dispatch/dispatcher.py
index 79fdb0bb99..2878ffac02 100644
--- a/django/dispatch/dispatcher.py
+++ b/django/dispatch/dispatcher.py
@@ -171,13 +171,13 @@ class Signal(object):
Send signal from sender to all connected receivers.
If any receiver raises an error, the error propagates back through send,
- terminating the dispatch loop, so it is quite possible to not have all
- receivers called if a raises an error.
+ terminating the dispatch loop. So it's possible that all receivers
+ won't be called if an error is raised.
Arguments:
sender
- The sender of the signal Either a specific object or None.
+ The sender of the signal. Either a specific object or None.
named
Named arguments which will be passed to receivers.