diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index e5c6efc..5a20381 100644
a
|
b
|
url
|
1003 | 1003 | ^^^ |
1004 | 1004 | |
1005 | 1005 | Returns an absolute path reference (a URL without the domain name) matching a |
1006 | | given view function and optional parameters. This is a way to output links |
1007 | | without violating the DRY principle by having to hard-code URLs in your |
1008 | | templates:: |
| 1006 | given view function and optional parameters. Any special characters will be |
| 1007 | encoded using :func:`~django.utils.encoding.iri_to_uri`. |
| 1008 | |
| 1009 | This is a way to output links without violating the DRY principle by having to |
| 1010 | hard-code URLs in your templates:: |
1009 | 1011 | |
1010 | 1012 | {% url 'path.to.some_view' v1 v2 %} |
1011 | 1013 | |