Skip to content
Snippets Groups Projects
Commit 348e731e authored by Jan Trávníček's avatar Jan Trávníček
Browse files

fix parameter description

parent 4f3d0099
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ int main(int argc, char** argv) {
 
TCLAP::CmdLine cmd("cast binary", ' ', "0.01");
 
TCLAP::ValueArg<std::string> input( "i", "input", "Input to echo", false, "-", "file");
TCLAP::ValueArg<std::string> input( "i", "input", "Input to cast", false, "-", "file");
cmd.add( input );
 
TCLAP::ValueArg<std::string> type( "t", "type", "Output type", true, "", "string");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment