1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Fixed typo in docs/topics/signals.txt.

This commit is contained in:
Aristotelis Mikropoulos 2022-07-02 17:45:24 +03:00 committed by GitHub
parent 863aa7541d
commit 5eb6a2b33d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -148,7 +148,7 @@ Now, our ``my_callback`` function will be called each time a request finishes.
...
def ready(self):
# Implicitly connect a signal handlers decorated with @receiver.
# Implicitly connect signal handlers decorated with @receiver.
from . import signals
# Explicitly connect a signal handler.
request_finished.connect(signals.my_callback)