diff --git a/interface/src/main.cpp b/interface/src/main.cpp index a62f8399d6..f0bd07a8e3 100644 --- a/interface/src/main.cpp +++ b/interface/src/main.cpp @@ -72,7 +72,7 @@ int main(int argc, const char* argv[]) { QCommandLineOption urlOption( "url", "Start at specified URL location.", - "value" + "string" ); QCommandLineOption protocolVersionOption( "protocolVersion", @@ -85,11 +85,11 @@ int main(int argc, const char* argv[]) { ); QCommandLineOption checkMinSpecOption( "checkMinSpec", - "Check if machine meets minimum specifications." + "Check if machine meets minimum specifications. The program will run if check passes." ); QCommandLineOption runServerOption( "runServer", - "Whether to run the server." + "Run the server." ); QCommandLineOption listenPortOption( "listenPort", @@ -97,12 +97,12 @@ int main(int argc, const char* argv[]) { ); QCommandLineOption serverContentPathOption( "serverContentPath", - "Where to find server content .", + "Path to find server content.", // What content?? "serverContentPath" ); // This data type will not be familiar to users. QCommandLineOption overrideAppLocalDataPathOption( "cache", - "set test cache .", + "Set test cache.", "dir" ); QCommandLineOption scriptsOption( @@ -203,12 +203,12 @@ int main(int argc, const char* argv[]) { QCommandLineOption traceDurationOption( "traceDuration", "Probably a number of seconds? Only works if \"--traceFile\" is specified.", - "value" + "number" ); QCommandLineOption clockSkewOption( "clockSkew", "Forces client instance's clock to skew for demonstration purposes.", - "value" + "integer" ); // This should probably be removed. QCommandLineOption testScriptOption( "testScript",