diff options
| author | Justin Bronn <jbronn@gmail.com> | 2010-04-05 15:47:05 +0000 |
|---|---|---|
| committer | Justin Bronn <jbronn@gmail.com> | 2010-04-05 15:47:05 +0000 |
| commit | b2627529e908291311a235baeff2abf16c6b33ae (patch) | |
| tree | ec826f49a4aa0995cda5d3db7411524b4b103391 /docs | |
| parent | 2e8f0a8f1510a9da1af62a8fdbcbde2b33291da9 (diff) | |
[1.1.X] Fixed #13271 -- Corrected a typo in the signals documentation. Thanks, chtito.
Backport of r12924 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12925 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -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 6f66b036c7..89e2b27d1f 100644 --- a/docs/topics/signals.txt +++ b/docs/topics/signals.txt @@ -100,7 +100,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 |
