diff --git a/docs/topics/checks.txt b/docs/topics/checks.txt
index c553577..df790b0 100644
a
|
b
|
Registering and labeling checks
|
122 | 122 | ------------------------------- |
123 | 123 | |
124 | 124 | Lastly, your check function must be registered explicitly with system check |
125 | | registry. |
| 125 | registry. Checks should be registered in a file that's loaded when your |
| 126 | application is loaded; for example, in the :meth:`AppConfig.ready() |
| 127 | <django.apps.AppConfig.ready>` method. |
126 | 128 | |
127 | 129 | .. function:: register(*tags)(function) |
128 | 130 | |