diff --git a/driver/cl_options.cpp b/driver/cl_options.cpp index 023be21f..feba795e 100644 --- a/driver/cl_options.cpp +++ b/driver/cl_options.cpp @@ -28,7 +28,7 @@ cl::list fileList( cl::Positional, cl::desc("files")); cl::list runargs("run", - cl::desc("program args..."), + cl::desc("Runs the resulting program, passing the remaining arguments to it"), cl::Positional, cl::PositionalEatsArgs); @@ -165,11 +165,11 @@ cl::opt ddocFile("Df", // Json options static cl::opt doJson("X", - cl::desc("generate JSON file"), + cl::desc("Generate JSON file"), cl::location(global.params.doXGeneration)); cl::opt jsonFile("Xf", - cl::desc("write JSON file to "), + cl::desc("Write JSON file to "), cl::value_desc("filename"), cl::Prefix); @@ -206,7 +206,7 @@ static cl::list stringImportPaths("J", cl::Prefix); static cl::opt addMain("main", - cl::desc("add empty main() (e.g. for unittesting)"), + cl::desc("Add empty main() (e.g. for unittesting)"), cl::ZeroOrMore, cl::location(global.params.addMain));