Documented autoescaping behavior and eval contexts.
--HG--
branch : trunk
diff --git a/jinja2/filters.py b/jinja2/filters.py
index b7402de..c0b8bee 100644
--- a/jinja2/filters.py
+++ b/jinja2/filters.py
@@ -31,7 +31,8 @@
def evalcontextfilter(f):
"""Decorator for marking eval-context dependent filters. An eval
- context object is passed as first argument.
+ context object is passed as first argument. For more information
+ about the eval context, see :ref:`eval-context`.
.. versionadded:: 2.4
"""
diff --git a/jinja2/utils.py b/jinja2/utils.py
index e00dee2..1fd6ec5 100644
--- a/jinja2/utils.py
+++ b/jinja2/utils.py
@@ -131,7 +131,8 @@
"""This decoraotr can be used to mark a function or method as an eval
context callable. This is similar to the :func:`contextfunction`
but instead of passing the context, an evaluation context object is
- passed.
+ passed. For more information about the eval context, see
+ :ref:`eval-context`.
.. versionadded:: 2.4
"""