fix dupe option

This commit is contained in:
John Sennesael 2022-03-19 16:47:03 -05:00
parent 640aeafff0
commit 86ed10917d
1 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ void usage(const std::string& program)
std::cout << " -c,--cols [COLS] Number of columns for multi-column"
<< std::endl
<< " output." << std::endl;
std::cout << " -h,--hspacing [COLS] Column horizontal spacing."
std::cout << " -s,--hspacing [COLS] Column horizontal spacing."
<< std::endl
<< " (default: 2)" << std::endl;
std::cout << " -v,--vspacing [ROWS] Column vertical spacing."
@ -131,7 +131,7 @@ Settings parseArgs(const StrVector& args)
}
continue;
}
else if ((arg == "-h") || (arg == "--hspacing"))
else if ((arg == "-s") || (arg == "--hspacing"))
{
if (!checkParam("number", arg, args, it)) return result;
try