diff --git a/docs/howto/static-files/index.txt b/docs/howto/static-files/index.txt
index 3668c5d..db8bd38 100644
a
|
b
|
details on how ``staticfiles`` finds your files.
|
68 | 68 | Now we *might* be able to get away with putting our static files directly |
69 | 69 | in ``my_app/static/`` (rather than creating another ``my_app`` |
70 | 70 | subdirectory), but it would actually be a bad idea. Django will use the |
71 | | last static file it finds whose name matches, and if you had a static file |
| 71 | first static file it finds whose name matches, and if you had a static file |
72 | 72 | with the same name in a *different* application, Django would be unable to |
73 | 73 | distinguish between them. We need to be able to point Django at the right |
74 | 74 | one, and the easiest way to ensure this is by *namespacing* them. That is, |
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index 897af27..902eefa 100644
a
|
b
|
various locations.
|
2564 | 2564 | The default will find files stored in the :setting:`STATICFILES_DIRS` setting |
2565 | 2565 | (using ``django.contrib.staticfiles.finders.FileSystemFinder``) and in a |
2566 | 2566 | ``static`` subdirectory of each app (using |
2567 | | ``django.contrib.staticfiles.finders.AppDirectoriesFinder``) |
| 2567 | ``django.contrib.staticfiles.finders.AppDirectoriesFinder``). If multiple |
| 2568 | files with the same name are present, the first file that is found will be |
| 2569 | used. |
2568 | 2570 | |
2569 | 2571 | One finder is disabled by default: |
2570 | 2572 | ``django.contrib.staticfiles.finders.DefaultStorageFinder``. If added to |