summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-01-15 16:55:13 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-01-15 16:55:38 +0100
commit83d0cc52141dbbd977da836fd7f77e0e735e2110 (patch)
tree4cd99a0a20b4f9027cd1ea008fe0aee8a2361ee1 /docs
parent984e91e28f3fb1d3f87f3f1de9fd54922b91c23c (diff)
Fixed a typo in the error reporting docs.
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/error-reporting.txt2
1 files changed, 1 insertions, 1 deletions
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::