Skip to content

Commit b714dad

Browse files
committed
fix some typos in the help text
1 parent 7419212 commit b714dad

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pxr/usdImaging/bin/usdrecord/usdrecord.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ void cameraArgs_AddCmdlineArgs(CLI::App *app, Args &args, std::string defaultVal
101101
"camera\'s prim name (i.e. just the last element in the prim "
102102
"path), or as a full prim path. Note that if only the prim name "
103103
"is used and more than one camera exists with that name, which "
104-
"one is used will effectively be random (default=%(default)s)";
104+
"one is used will effectively be random";
105105
}
106106

107107
app->add_option("--cam, --camera", args.camera, helpText)
@@ -308,7 +308,7 @@ void complexityArgs_AddCmdlineArgs(CLI::App *app, Args &args, const std::string&
308308

309309
std::string helpText = altHelpText;
310310
if (helpText.empty()) {
311-
helpText = "level of refinement to use (default="+defaultValue+")";
311+
helpText = "level of refinement to use";
312312
}
313313

314314
app->add_option("-c,--complexity", args.complexity, helpText)
@@ -325,7 +325,7 @@ void colorArgs_AddCmdlineArgs(CLI::App *app, Args &args, const std::string &defa
325325

326326
std::string helpText = altHelpText;
327327
if (helpText.empty()) {
328-
helpText = "the color correction mode to use (default=" + defaultValue + ")";
328+
helpText = "the color correction mode to use";
329329
}
330330
app->add_option("--color,--colorCorrectionMode", args.colorCorrectionMode, helpText)
331331
->default_val(defaultValue)
@@ -434,12 +434,12 @@ static void Configure(CLI::App *app, Args &args) {
434434
app->add_option< int, int>(
435435
"-w,--imageWidth", args.imageWidth,
436436
"Width of the output image. The height will be computed from this "
437-
"value and the camera\'s aspect ratio (default=960)")
437+
"value and the camera\'s aspect ratio")
438438
->default_val(960);
439439

440440
app->add_option(
441441
"-a,--aov", args.aovName,
442-
"Specify the aov to output (default=color)")
442+
"Specify the aov to output")
443443
->default_val("color")
444444
->check(CLI::IsMember({"color", "depth", "primId"}));
445445

0 commit comments

Comments
 (0)