aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2017-08-07 13:49:20 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2017-08-08 08:00:55 +0000
commit3255da1a9809f10ffa73f15a39977a086d1e4299 (patch)
treeb82b04374b47b40beb041a840d4a880209b1309e
parent6edf9bfdbd80329022cb328a6c2082724d03b07b (diff)
Fix help output
The term "Internal command" is ambiguous. Change-Id: I0d1c84bf813256ea9ac96582994e07106f36f4ea Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io> Reviewed-by: Jake Petroules <jake.petroules@qt.io>
-rw-r--r--src/app/qbs/parser/commandlineparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/qbs/parser/commandlineparser.cpp b/src/app/qbs/parser/commandlineparser.cpp
index 6e45aeb0a..9afbd7002 100644
--- a/src/app/qbs/parser/commandlineparser.cpp
+++ b/src/app/qbs/parser/commandlineparser.cpp
@@ -390,7 +390,7 @@ static QString extractToolDescription(const QString &tool, const QString &output
QString CommandLineParser::CommandLineParserPrivate::generalHelp() const
{
QString help = Tr::tr("Usage: qbs [command] [command parameters]\n");
- help += Tr::tr("Internal commands:\n");
+ help += Tr::tr("Built-in commands:\n");
const int rhsIndentation = 30;
// Sorting the commands by name is nicer for the user.