@@ -28,7 +28,7 @@ cl::list<std::string> fileList(
2828 cl::Positional, cl::desc(" files" ));
2929
3030cl::list<std::string> runargs (" run" ,
31- cl::desc (" program args... " ),
31+ cl::desc (" Runs the resulting program, passing the remaining arguments to it " ),
3232 cl::Positional,
3333 cl::PositionalEatsArgs);
3434
@@ -165,11 +165,11 @@ cl::opt<std::string> ddocFile("Df",
165165
166166// Json options
167167static cl::opt<bool , true > doJson (" X" ,
168- cl::desc (" generate JSON file" ),
168+ cl::desc (" Generate JSON file" ),
169169 cl::location(global.params.doXGeneration));
170170
171171cl::opt<std::string> jsonFile (" Xf" ,
172- cl::desc (" write JSON file to <filename>" ),
172+ cl::desc (" Write JSON file to <filename>" ),
173173 cl::value_desc(" filename" ),
174174 cl::Prefix);
175175
@@ -206,7 +206,7 @@ static cl::list<std::string, StringsAdapter> stringImportPaths("J",
206206 cl::Prefix);
207207
208208static cl::opt<bool , true > addMain (" main" ,
209- cl::desc (" add empty main() (e.g. for unittesting)" ),
209+ cl::desc (" Add empty main() (e.g. for unittesting)" ),
210210 cl::ZeroOrMore,
211211 cl::location(global.params.addMain));
212212
0 commit comments