diff --git a/docs/topics/signals.txt b/docs/topics/signals.txt
index e3f5b90..eb1a5fd 100644
a
|
b
|
Now, our ``my_callback`` function will be called each time a request finishes.
|
103 | 103 | Connecting to signals sent by specific senders |
104 | 104 | ---------------------------------------------- |
105 | 105 | |
106 | | Some signals get sent many times, but you'll only be interested in recieving a |
| 106 | Some signals get sent many times, but you'll only be interested in receiving a |
107 | 107 | certain subset of those signals. For example, consider the |
108 | 108 | :data:`django.db.models.signals.pre_save` signal sent before a model gets saved. |
109 | 109 | Most of the time, you don't need to know when *any* model gets saved -- just |