From e625859f086375dac743fcdcb61890ae2dcefb93 Mon Sep 17 00:00:00 2001
From: Jarek Glowacki <jarekwg@outlook.com>
Date: Tue, 12 Jan 2016 12:46:07 +1100
Subject: [PATCH] [1.8.x] Corrected a few typos in Signal.send() docstring.

Backport of c68ce18712f5896fa9ab95afd69d590212f3c398 from master
---
 django/dispatch/dispatcher.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/django/dispatch/dispatcher.py b/django/dispatch/dispatcher.py
index 5d7f24ce34..ec59666901 100644
--- a/django/dispatch/dispatcher.py
+++ b/django/dispatch/dispatcher.py
@@ -168,13 +168,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.