diff options
-rw-r--r-- | tests/hawd/modules/check.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/hawd/modules/check.cpp b/tests/hawd/modules/check.cpp index e334fb8..be7df9f 100644 --- a/tests/hawd/modules/check.cpp +++ b/tests/hawd/modules/check.cpp | |||
@@ -33,6 +33,7 @@ CheckAll::CheckAll() | |||
33 | : Module() | 33 | : Module() |
34 | { | 34 | { |
35 | setSyntax(Syntax("checkall", &CheckAll::check)); | 35 | setSyntax(Syntax("checkall", &CheckAll::check)); |
36 | setDescription(QObject::tr("Checks all dataset descriptions for validity and prints out any errors it finds")); | ||
36 | } | 37 | } |
37 | 38 | ||
38 | bool CheckAll::check(const QStringList &commands, State &state) | 39 | bool CheckAll::check(const QStringList &commands, State &state) |
@@ -52,7 +53,7 @@ Check::Check() | |||
52 | Syntax top("check", &Check::check); | 53 | Syntax top("check", &Check::check); |
53 | setSyntax(top); | 54 | setSyntax(top); |
54 | 55 | ||
55 | setDescription(QObject::tr("Checks a dataset description for validity and prints out any errors it finds")); | 56 | setDescription(QObject::tr("Checks one or more dataset descriptions for validity and prints out any errors it finds")); |
56 | } | 57 | } |
57 | 58 | ||
58 | bool Check::check(const QStringList &commands, State &state) | 59 | bool Check::check(const QStringList &commands, State &state) |