From 3228448b644503651f7927bf1274a5db59d05d4e Mon Sep 17 00:00:00 2001 From: Konstantin Pereiaslov Date: Thu, 21 Sep 2023 00:29:25 -0500 Subject: [PATCH] Fix typo in help text --- arguments_parsing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arguments_parsing.c b/arguments_parsing.c index 6d954c0..fee9db3 100644 --- a/arguments_parsing.c +++ b/arguments_parsing.c @@ -20,7 +20,7 @@ void print_usage(char *binary_name) { printf("Usage: %s [OPTIONS] shell_command_to_run [shell_command_arguments]\n", binary_name); printf("\nOptions:\n"); printf(" --timeout|-t Set the user idle time after which the command can run in seconds (default: 300 seconds).\n"); - printf(" --start-monitor-after|-a Set an initial delay in milliseconds before monitoring starts. During this time command runs unrestricted. This helps to catch errors happening after shortly after the execution has started. (default: 300 ms).\n"); + printf(" --start-monitor-after|-a Set an initial delay in milliseconds before monitoring starts. During this time command runs unrestricted. This helps to catch errors happening shortly after the execution has started. (default: 300 ms).\n"); printf(" --pause-method|-m Specify method for pausing the command when user is not idle. Available parameters: SIGTSTP (can be ignored by the program), SIGSTOP (can not be ignored). (default: SIGTSTP).\n"); printf(" --verbose|-v Enable verbose output for monitoring.\n"); printf(" --debug Enable debugging output.\n");