summaryrefslogtreecommitdiff
path: root/docs/howto/error-reporting.txt
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:56:03 +0100
commit464e9669a128b94812452a8e1834b3214e061b5d (patch)
treee6f94882f47da04a64aacaf20617cad75988c7dd /docs/howto/error-reporting.txt
parent6428f1cb72b912a94217fb22eb187f5b80f7088f (diff)
[1.5.x] Fixed a typo in the error reporting docs.
Backport of 83d0cc52.
Diffstat (limited to 'docs/howto/error-reporting.txt')
-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 dc51d76d82..6239972542 100644
--- a/docs/howto/error-reporting.txt
+++ b/docs/howto/error-reporting.txt
@@ -167,7 +167,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::