summaryrefslogtreecommitdiff
path: root/django/dispatch
diff options
context:
space:
mode:
authorjerry dumblauskas <jdumblauskas@gmail.com>2014-12-01 20:53:15 -0600
committerTim Graham <timograham@gmail.com>2014-12-02 07:26:45 -0500
commit5760fe66dfa19eb38dc7c335d7a360e533b7a352 (patch)
tree43239c6e58c01a55c7ced6eff56b3f4f4ee93a89 /django/dispatch
parent1e1ac4ec5b925e42ee9bf922a3662426b4b43336 (diff)
Fixed typo in django/dispatch/dispatcher.py docstring.
Diffstat (limited to 'django/dispatch')
-rw-r--r--django/dispatch/dispatcher.py2
1 files changed, 1 insertions, 1 deletions
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.