Fixed a link to the renamed section.
authorArmin Ronacher <armin.ronacher@active-4.com>
Wed, 25 Jun 2008 18:46:22 +0000 (20:46 +0200)
committerArmin Ronacher <armin.ronacher@active-4.com>
Wed, 25 Jun 2008 18:46:22 +0000 (20:46 +0200)
--HG--
branch : trunk

CHANGES
jinja2/filters.py

diff --git a/CHANGES b/CHANGES
index 1035a2ad6b4c7bbf52bbb12429932ddfe99e8e7c..4b34d9843174d2d19aafff140df0905b41b19f59 100644 (file)
--- 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 <notes-on-subscribing>`.
+  For more information see :ref:`the implementation details <notes-on-subscriptions>`.
 
 - added support for preprocessing and token stream filtering for extensions.
   This would allow extensions to allow simplified gettext calls in template
index 2bcce4356abf9122dc96491764095055c684c3fb..e8ab29681303ec772b21a722ea941e500d6ec9c5 100644 (file)
@@ -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 <notes-on-subscribing>` for more details.
+    See :ref:`Notes on subscriptions <notes-on-subscriptions>` for more details.
     """
     try:
         value = getattr(obj, name)