summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-05-10 13:16:08 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-05-10 13:16:08 +0000
commitb832e6130891b335cf36a78b29220f5535e56499 (patch)
tree795b60f390ca1bc6a226063199ecb19f456c9ce7 /docs
parentb34edc76eb05a676974cc74937228556cd8ca3b2 (diff)
Fixed #12621 -- Corrected grammar error in custom template tag docs. Thanks to beemzet for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13212 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/custom-template-tags.txt13
1 files changed, 7 insertions, 6 deletions
diff --git a/docs/howto/custom-template-tags.txt b/docs/howto/custom-template-tags.txt
index db13f005da..f56cf22f66 100644
--- a/docs/howto/custom-template-tags.txt
+++ b/docs/howto/custom-template-tags.txt
@@ -7,12 +7,13 @@ Custom template tags and filters
Introduction
============
-Django's template system comes a wide variety of :ref:`built-in tags and filters
-<ref-templates-builtins>` designed to address the presentation logic needs of
-your application. Nevertheless, you may find yourself needing functionality that
-is not covered by the core set of template primitives. You can extend the
-template engine by defining custom tags and filters using Python, and then make
-them available to your templates using the ``{% load %}`` tag.
+Django's template system comes with a wide variety of :ref:`built-in
+tags and filters <ref-templates-builtins>` designed to address the
+presentation logic needs of your application. Nevertheless, you may
+find yourself needing functionality that is not covered by the core
+set of template primitives. You can extend the template engine by
+defining custom tags and filters using Python, and then make them
+available to your templates using the ``{% load %}`` tag.
Code layout
-----------