Skip to content

Commit

Permalink
Removed weird characters
Browse files Browse the repository at this point in the history
  • Loading branch information
Brownshome committed Aug 5, 2018
1 parent 8845725 commit 98ec1ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/se306group8/scheduleoptimizer/cli/ArgsParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public Config parse(String[] args) throws ArgumentException {

options.addOption("p", true, "use N cores for execution in parallel (default is sequential)");
options.addOption("v", "visualise the search");
options.addOption("o", true, "output file is named OUTPUT (default is INPUToutput.dot)");
options.addOption("o", true, "output file is named OUTPUT (default is INPUT-output.dot)");

CommandLineParser parser = new DefaultParser();
CommandLine cmd;
Expand Down Expand Up @@ -128,7 +128,7 @@ public String getHelp() {
"Optional:\n"+
"-p N Use N cores for execution in parallel (default is sequential).\n"+
"-v Visualise the search.\n"+
"-o OUTPUT Output file is named OUTPUT (default is INPUToutput.dot).";
"-o OUTPUT Output file is named OUTPUT (default is INPUT-output.dot).";
}

}

0 comments on commit 98ec1ca

Please sign in to comment.