Fix miss-wording, colon->comma

This commit is contained in:
Spencer Gibb
2017-10-20 15:42:07 -04:00
committed by GitHub
parent 9b4ee920c7
commit 6f4aea0b08

View File

@@ -115,7 +115,7 @@ class OptionsProcessor {
}
msg.append("\n").append("You can pick a range of options by using the hyphen - e.g. '2-4' will execute jobs [2,3,4]\n");
msg.append("You can execute all tasks starting from a job by using a hyphen and providing only one number - e.g. '8-' will execute jobs [8,9,10]\n");
msg.append("You can execute given tasks by providing a colon separated list of tasks - e.g. '3,7,8' will execute jobs [3,7,8]\n");
msg.append("You can execute given tasks by providing a comma separated list of tasks - e.g. '3,7,8' will execute jobs [3,7,8]\n");
msg.append("\n").append("You can press 'q' to quit\n\n");
return msg;
}