summaryrefslogtreecommitdiff
path: root/django/template/__init__.py
diff options
context:
space:
mode:
authorMartin Matusiak <numerodix@gmail.com>2014-10-04 11:36:23 +0200
committerTim Graham <timograham@gmail.com>2014-10-04 08:00:00 -0400
commitae5dbe5aa8d55916efdda192e83e1f303662f745 (patch)
tree11e72403027189ba2b5295e519d99b60bd4cad7f /django/template/__init__.py
parentacdbecda055eaa6d63d5bc6aa5b23d7e925121aa (diff)
Fixed comment typo in django/template/__init__.py
Diffstat (limited to 'django/template/__init__.py')
-rw-r--r--django/template/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/template/__init__.py b/django/template/__init__.py
index 576d3bc920..0be11cb8e6 100644
--- a/django/template/__init__.py
+++ b/django/template/__init__.py
@@ -19,7 +19,7 @@ define their own custom node types.
Each Node has a render() method, which takes a Context and returns a string of
the rendered node. For example, the render() method of a Variable Node returns
-the variable's value as a string. The render() method of an IfNode returns the
+the variable's value as a string. The render() method of a ForNode returns the
rendered output of whatever was inside the loop, recursively.
The Template class is a convenient wrapper that takes care of template