diff --git a/docs/ref/contrib/staticfiles.txt b/docs/ref/contrib/staticfiles.txt
index 140506c..6b4747a 100644
a
|
b
|
collectstatic
|
41 | 41 | |
42 | 42 | Collects the static files into :setting:`STATIC_ROOT`. |
43 | 43 | |
44 | | Duplicate file names are by default resolved in a similar way to how template |
45 | | resolution works: the file that is first found in one of the specified |
46 | | locations will be used. If you're confused, the :djadmin:`findstatic` command |
47 | | can help show you which files are found. |
| 44 | Duplicate file names are by default resolved by the file's modification time: |
| 45 | the file that is last modified in one of the specified locations will be used. |
| 46 | |
| 47 | .. note:: |
| 48 | |
| 49 | After deleting an application, it's recommended to use the |
| 50 | :djadminopt:`--clear` option in order to remove the possible stale static |
| 51 | files. |
| 52 | |
| 53 | If you're confused, the :djadmin:`findstatic` command can help show you which |
| 54 | files are found. |
48 | 55 | |
49 | 56 | Files are searched by using the :setting:`enabled finders |
50 | 57 | <STATICFILES_FINDERS>`. The default is to look in all locations defined in |