From 53db78e3df0337a0f64cbed9babd32c5e387a8ce Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Wed, 25 Jun 2008 20:46:22 +0200 Subject: [PATCH] Fixed a link to the renamed section. --HG-- branch : trunk --- CHANGES | 2 +- jinja2/filters.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 1035a2a..4b34d98 100644 --- a/CHANGES +++ b/CHANGES @@ -11,7 +11,7 @@ Version 2.0 changed the AST slightly. `Subscript` is gone and was replaced with :class:`~jinja2.nodes.Getitem` and :class:`~jinja2.nodes.Getattr`. - For more information see :ref:`the implementation details `. + For more information see :ref:`the implementation details `. - added support for preprocessing and token stream filtering for extensions. This would allow extensions to allow simplified gettext calls in template diff --git a/jinja2/filters.py b/jinja2/filters.py index 2bcce43..e8ab296 100644 --- a/jinja2/filters.py +++ b/jinja2/filters.py @@ -627,7 +627,7 @@ def do_attr(environment, obj, name): ``foo["bar"]`` just that always an attribute is returned and items are not looked up. - See :ref:`Notes on subscribing ` for more details. + See :ref:`Notes on subscriptions ` for more details. """ try: value = getattr(obj, name)