From 790f0eb7fe0c88bf39595e6b70ddf40de5843b9d Mon Sep 17 00:00:00 2001
From: Russell Keith-Magee <russell@keith-magee.com>
Date: Sat, 20 Nov 2010 11:16:43 +0000
Subject: [PATCH] Corrected a typo in the docs for {% load %}. Thanks to Jannis
 for the report.

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

diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index 85050cf5ee..759e2f2034 100644
--- a/docs/ref/templates/builtins.txt
+++ b/docs/ref/templates/builtins.txt
@@ -662,7 +662,7 @@ in ``somelibrary`` and ``otherlibrary``::
 
     {% load somelibrary otherlibrary %}
 
-You can also selectively load individual templates or tags from a library, using
+You can also selectively load individual filters or tags from a library, using
 the ``from`` argument. In this example, the template tags/filters named ``foo``
 and ``bar`` will be loaded from ``somelibrary``::