Ticket #13271: doc.diff

File doc.diff, 730 bytes (added by chtito, 14 years ago)
  • docs/topics/signals.txt

    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.  
    103103Connecting to signals sent by specific senders
    104104----------------------------------------------
    105105
    106 Some signals get sent many times, but you'll only be interested in recieving a
     106Some signals get sent many times, but you'll only be interested in receiving a
    107107certain subset of those signals. For example, consider the
    108108:data:`django.db.models.signals.pre_save` signal sent before a model gets saved.
    109109Most of the time, you don't need to know when *any* model gets saved -- just
Back to Top