Fixed typo in docs/topics/signals.txt.

This commit is contained in:
Haki Benita 2021-06-29 15:07:12 +03:00 committed by Mariusz Felisiak
parent 0dc25526d8
commit 59404e8cfe
1 changed files with 4 additions and 4 deletions

View File

@ -5,10 +5,10 @@ Signals
.. module:: django.dispatch .. module:: django.dispatch
:synopsis: Signal dispatch :synopsis: Signal dispatch
Django includes a "signal dispatcher" which helps allow decoupled applications Django includes a "signal dispatcher" which helps decoupled applications get
get notified when actions occur elsewhere in the framework. In a nutshell, notified when actions occur elsewhere in the framework. In a nutshell, signals
signals allow certain *senders* to notify a set of *receivers* that some action allow certain *senders* to notify a set of *receivers* that some action has
has taken place. They're especially useful when many pieces of code may be taken place. They're especially useful when many pieces of code may be
interested in the same events. interested in the same events.
Django provides a :doc:`set of built-in signals </ref/signals>` that let user Django provides a :doc:`set of built-in signals </ref/signals>` that let user