1
0
mirror of https://github.com/django/django.git synced 2025-04-09 07:56:43 +00:00

[1.10.x] Fixed typo in docs/topics/signals.txt.

Backport of b5ef90192fa4e1ebcf8c5d4abacb1caaefdc2008 from master
This commit is contained in:
Daniel Musketa 2016-11-23 12:54:58 +01:00 committed by Tim Graham
parent 047a62b3f7
commit d0f417be1f

View File

@ -186,7 +186,7 @@ Preventing duplicate signals
In some circumstances, the code connecting receivers to signals may run
multiple times. This can cause your receiver function to be registered more
than once, and thus called multiples times for a single signal event.
than once, and thus called multiple times for a single signal event.
If this behavior is problematic (such as when using signals to
send an email whenever a model is saved), pass a unique identifier as