Skip to content

Commit 28cd8b0

Browse files
committed
Capitalize option decriptions.
1 parent fd012bb commit 28cd8b0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

driver/cl_options.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ cl::list<std::string> fileList(
2828
cl::Positional, cl::desc("files"));
2929

3030
cl::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
167167
static 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

171171
cl::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

208208
static 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

Comments
 (0)