summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimon Meers <simon@simonmeers.com>2011-05-09 22:31:07 +0000
committerSimon Meers <simon@simonmeers.com>2011-05-09 22:31:07 +0000
commitaf1943f1394d2f59ab433cb1170a7d22d7743665 (patch)
treeba0b8473062eedddeb18504f4486343ff9a2e7d7 /docs
parentfb052a15edbaf81a60c1d64b6088f2d4bdeec926 (diff)
[1.3.X] Fixed #15989 -- typo in static-files howto. Thanks luizvital.
Backport of r16195 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@16196 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/static-files.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/static-files.txt b/docs/howto/static-files.txt
index 5657e24516..e41060583e 100644
--- a/docs/howto/static-files.txt
+++ b/docs/howto/static-files.txt
@@ -286,7 +286,7 @@ parameter.
Since it can become a bit cumbersome to define this URL pattern, Django
ships with a small URL helper function
-:func:`~django.conf.urls.static.static` that taks as parameters the prefix
+:func:`~django.conf.urls.static.static` that takes as parameters the prefix
such as :setting:`MEDIA_URL` and a dotted path to a view, such as
``'django.views.static.serve'``. Any other function parameter will be
transparently passed to the view.