summaryrefslogtreecommitdiff
path: root/docs/howto/static-files
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-06-21 15:00:06 -0400
committerTim Graham <timograham@gmail.com>2013-06-21 15:00:06 -0400
commit519fdacf5127540638f7c1b4a3656d9a31f16a8b (patch)
treee5812cebd8239669e2b47e40f8d5523478154d0c /docs/howto/static-files
parent9b0604e5149e20fc98f07256af60eac87421a346 (diff)
Fixed #20634 - Corrected doc mistake re: staticfiles finders strategy.
Thanks claudep for the catch and bmispelon for the research. Backport of 9be93aa809 from master.
Diffstat (limited to 'docs/howto/static-files')
-rw-r--r--docs/howto/static-files/index.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/static-files/index.txt b/docs/howto/static-files/index.txt
index 38aded1fd3..6d67fe6297 100644
--- a/docs/howto/static-files/index.txt
+++ b/docs/howto/static-files/index.txt
@@ -68,7 +68,7 @@ details on how ``staticfiles`` finds your files.
Now we *might* be able to get away with putting our static files directly
in ``my_app/static/`` (rather than creating another ``my_app``
subdirectory), but it would actually be a bad idea. Django will use the
- last static file it finds whose name matches, and if you had a static file
+ first static file it finds whose name matches, and if you had a static file
with the same name in a *different* application, Django would be unable to
distinguish between them. We need to be able to point Django at the right
one, and the easiest way to ensure this is by *namespacing* them. That is,