From 8122ce7c766ab12d2d9bc5389514850ef7b22ac2 Mon Sep 17 00:00:00 2001
From: Simon Meers <simon@simonmeers.com>
Date: Mon, 9 May 2011 22:30:31 +0000
Subject: [PATCH] Fixed #15989 -- typo in static-files howto. Thanks luizvital.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16195 bcc190cf-cafb-0310-a4f2-bffc1f526a37
---
 docs/howto/static-files.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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.