summaryrefslogtreecommitdiff
path: root/docs/ref/templates
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-05-06 01:19:21 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-05-06 01:19:21 +0000
commit84df3554d0a3d4d3373a8ccc8b9d412982ee6728 (patch)
treec9c772224fd642685fdfb6e55c2565c4b9c42a33 /docs/ref/templates
parentc21c052cf0237317f42507211cff8923b20539a0 (diff)
Fixed #13287 -- Corrected the advice on argument formatting in the {% url %} tag. Thanks to Gabriel Hurley for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13107 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/templates')
-rw-r--r--docs/ref/templates/builtins.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 41bf683c22..7eb818432d 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -915,7 +915,7 @@ violating the DRY principle by having to hard-code URLs in your templates::
The first argument is a path to a view function in the format
``package.package.module.function``. Additional arguments are optional and
-should be comma-separated values that will be used as arguments in the URL.
+should be space-separated values that will be used as arguments in the URL.
The example above shows passing positional arguments. Alternatively you may
use keyword syntax::