diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-09-06 12:37:54 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-09-06 12:37:54 +0000 |
| commit | 1087ee3d5e4da4658e79e9f701f72c50c5bf36f9 (patch) | |
| tree | 3ec1fff534d06c96381d6dc1e8bc604528228ced /docs/templates_python.txt | |
| parent | 4ea3dd5dbdcb49aa9c78140ab6730aa235d9e6f0 (diff) | |
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
Diffstat (limited to 'docs/templates_python.txt')
| -rw-r--r-- | docs/templates_python.txt | 4 |
1 files 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:: |
