From 21986aae0d72ffaa46fe8695aba13d5a50d3683d Mon Sep 17 00:00:00 2001 From: lucaspalomodevelop Date: Mon, 15 May 2023 20:27:24 +0200 Subject: [PATCH] fix help display bug --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 4ac4882..548a5a2 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -114,6 +114,6 @@ void help(int argc, char *argv[]) { std::cout << "Usage: autom [command] [options]" << std::endl; std::cout << "Commands:" << std::endl; - std::cout << " [script] - Runs a script if autom has not command with that name" << std::endl; + std::cout << "\t[script] - Runs a script if autom has not command with that name" << std::endl; std::cout << command.listCommands() << std::endl; } \ No newline at end of file