From 83d0cc52141dbbd977da836fd7f77e0e735e2110 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Tue, 15 Jan 2013 16:55:13 +0100 Subject: [PATCH] Fixed a typo in the error reporting docs. --- docs/howto/error-reporting.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/howto/error-reporting.txt b/docs/howto/error-reporting.txt index 98b3b4e4d8..742b81b7e2 100644 --- a/docs/howto/error-reporting.txt +++ b/docs/howto/error-reporting.txt @@ -157,7 +157,7 @@ production environment (that is, where :setting:`DEBUG` is set to ``False``): If the variable you want to hide is also a function argument (e.g. '``user``' in the following example), and if the decorated function has - mutiple decorators, then make sure to place ``@sensible_variables`` at + mutiple decorators, then make sure to place ``@sensitive_variables`` at the top of the decorator chain. This way it will also hide the function argument as it gets passed through the other decorators::