diff options
author | Justin Bronn <jbronn@gmail.com> | 2010-04-05 15:46:44 +0000 |
---|---|---|
committer | Justin Bronn <jbronn@gmail.com> | 2010-04-05 15:46:44 +0000 |
commit | 7cc4046802c8eb0492333b6e7c4fcacdd4838c7b (patch) | |
tree | d1b48e22b17c9f24942288416c1c91d18ecab699 /docs/topics/signals.txt | |
parent | 90d112785b5caf30507ffc91b74b8f5a7725e4f6 (diff) | |
download | django-7cc4046802c8eb0492333b6e7c4fcacdd4838c7b.tar.gz |
Fixed #13271 -- Corrected a typo in the signals documentation. Thanks, chtito.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12924 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics/signals.txt')
-rw-r--r-- | docs/topics/signals.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/signals.txt b/docs/topics/signals.txt index e3f5b90d89..eb1a5fd825 100644 --- a/docs/topics/signals.txt +++ b/docs/topics/signals.txt @@ -103,7 +103,7 @@ Now, our ``my_callback`` function will be called each time a request finishes. Connecting to signals sent by specific senders ---------------------------------------------- -Some signals get sent many times, but you'll only be interested in recieving a +Some signals get sent many times, but you'll only be interested in receiving a certain subset of those signals. For example, consider the :data:`django.db.models.signals.pre_save` signal sent before a model gets saved. Most of the time, you don't need to know when *any* model gets saved -- just |