Explorar el Código

Update docs/userguide/signals.rst

fix typo
w- hace 12 años
padre
commit
80915d68d2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      docs/userguide/signals.rst

+ 1 - 1
docs/userguide/signals.rst

@@ -49,7 +49,7 @@ has been sent by providing the `sender` argument to
 Signals use the same implementation as django.core.dispatch. As a result other
 keyword parameters (e.g. signal) are passed to all signal handlers by default.
 
-The best practice for signal handlers is to accept arbitrary keyword arguments (**kwargs.
+The best practice for signal handlers is to accept arbitrary keyword arguments (i.e. **kwargs).
 That way new celery versions can add additional arguments without breaking user code.
 
 .. _signal-ref: