From 5760fe66dfa19eb38dc7c335d7a360e533b7a352 Mon Sep 17 00:00:00 2001 From: jerry dumblauskas Date: Mon, 1 Dec 2014 20:53:15 -0600 Subject: [PATCH] Fixed typo in django/dispatch/dispatcher.py docstring. --- django/dispatch/dispatcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/dispatch/dispatcher.py b/django/dispatch/dispatcher.py index 20048f5c55..3f00cab0f1 100644 --- a/django/dispatch/dispatcher.py +++ b/django/dispatch/dispatcher.py @@ -60,7 +60,7 @@ class Signal(object): A function or an instance method which is to receive signals. Receivers must be hashable objects. - If weak is True, then receiver must be weak-referencable. + If weak is True, then receiver must be weak referenceable. Receivers must be able to accept keyword arguments.