Ticket #19579: 19579.diff

File 19579.diff, 526 bytes (added by Tim Graham, 12 years ago)
  • docs/topics/signals.txt

    diff --git a/docs/topics/signals.txt b/docs/topics/signals.txt
    index 5ea0895..d611da4 100644
    a b Defining signals  
    213213
    214214All signals are :class:`django.dispatch.Signal` instances. The
    215215``providing_args`` is a list of the names of arguments the signal will provide
    216 to listeners.
     216to listeners. This is purely documentational, however, as there is nothing that
     217checks that the signal actually provides these arguments to its listeners.
    217218
    218219For example:
    219220
Back to Top