summaryrefslogtreecommitdiffstats
path: root/src/testlib/doc/src/qttest-best-practices.qdoc
diff options
context:
space:
mode:
Diffstat (limited to 'src/testlib/doc/src/qttest-best-practices.qdoc')
-rw-r--r--src/testlib/doc/src/qttest-best-practices.qdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testlib/doc/src/qttest-best-practices.qdoc b/src/testlib/doc/src/qttest-best-practices.qdoc
index 952fd3259d..7143e644fd 100644
--- a/src/testlib/doc/src/qttest-best-practices.qdoc
+++ b/src/testlib/doc/src/qttest-best-practices.qdoc
@@ -270,7 +270,7 @@
When side-effects are unavoidable, ensure that the prior state is restored
at the end of the test function, even if the test fails. This commonly
requires use of an RAII (resource acquisition is initialization) class
- that restores state when the function returns, or a \l cleanup() method.
+ that restores state when the function returns, or a \c cleanup() method.
Do not simply put the restoration code at the end of the test. If part of
the test fails, such code will be skipped and the prior state will not be
restored.