Add newline to usage message for better readability

This commit is contained in:
2025-05-05 20:06:42 +08:00
parent b94126ae63
commit f336adba0d
+1 -1
View File
@@ -95,7 +95,7 @@ int main(int argc, char** argv) {
if (no_opt == true) { if (no_opt == true) {
vector<string> prog_path = tokenize(argv[0], "\\"); vector<string> prog_path = tokenize(argv[0], "\\");
string prog_name = prog_path.back(); string prog_name = prog_path.back();
cout << "Usage: " << prog_name << " -f <filename> [-r <truncate>] [-t <testnames>] [-h]\n"; cout << "\nUsage: " << prog_name << " -f <filename> [-r <truncate>] [-t <testnames>] [-h]\n";
cout << "\tOptions:\n"; cout << "\tOptions:\n";
cout << "\t\t-f => Specify .datalog file name\n"; cout << "\t\t-f => Specify .datalog file name\n";