Skip to content

Commit

Permalink
minor corrections to CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
chrxh committed Sep 21, 2023
1 parent 6389f97 commit 1b039d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Cli/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ int main(int argc, char** argv)
int timesteps = 0;
app.add_option(
"-i", inputFilename, "Specifies the name of the input file for the simulation to run. The corresponding .settings.json should also be available.");
app.add_option("-o", outputFilename, "Specifies the name of the output file for the simulation to run.");
app.add_option("-t", timesteps, "Number of time steps to calculate");
app.add_option("-o", outputFilename, "Specifies the name of the output file for the simulation.");
app.add_option("-t", timesteps, "The number of time steps to be calculated.");
app.add_option("-s", statisticsFilename, "Specifies the name of the csv-file containing the statistics.");
CLI11_PARSE(app, argc, argv);

Expand Down

0 comments on commit 1b039d0

Please sign in to comment.