From 1087ee3d5e4da4658e79e9f701f72c50c5bf36f9 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 6 Sep 2005 12:37:54 +0000 Subject: [PATCH] Fixed #462 -- Fixed typo in docs/templates_python.txt. Thanks, eugene@lazutkin.com and sanxiyn git-svn-id: http://code.djangoproject.com/svn/django/trunk@630 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/templates_python.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/templates_python.txt b/docs/templates_python.txt index d04d1a9c6e..fd2e782641 100644 --- a/docs/templates_python.txt +++ b/docs/templates_python.txt @@ -30,7 +30,7 @@ Example template with block tags:: A **variable** is a symbol within a template that outputs a value. -Block tags are surrounded by ``"{{"`` and ``"}}"``. +Variable tags are surrounded by ``"{{"`` and ``"}}"``. Example template with variables:: @@ -147,7 +147,7 @@ Method lookups are slightly more complex than the other lookup types. Here are some things to keep in mind: * If, during the method lookup, a method raises an exception, the exception - will be propgated, unless the exception subclasses + will be propagated, unless the exception subclasses ``django.core.template.SilentVariableFailure``. If the exception subclasses ``SilentVariableFailure``, the variable will render as an empty string. Example::