From e84ca8ed94d36e57f7ab8a547096ce7f61c06f5c Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Thu, 15 Jul 2010 15:43:17 +0200 Subject: [PATCH] Clearified that --- docs/patterns/packages.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/patterns/packages.rst b/docs/patterns/packages.rst index f6e1ad87..cd2deac1 100644 --- a/docs/patterns/packages.rst +++ b/docs/patterns/packages.rst @@ -258,3 +258,8 @@ explicit unlike URL rules. # this refers to the current module's static folder url_for('static', filename='static.css') + + This is the case for all endpoints, not just static folders, but for + static folders it's more common that you will stumble upon this because + most applications will have a static folder in the application and not + a specific module.