Skip to content

Commit

Permalink
Microfix in help text
Browse files Browse the repository at this point in the history
  • Loading branch information
dark committed Feb 3, 2024
1 parent 7961a93 commit 42c6a0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Usage: ./skyscraper (-c|--create) MODE [-z|--size SIZE] [-s|--seed SEED] [-o|--o
Where:
MODE is the puzzle creation mode (only 'shuffle' is supported now)
SIZE is the board size (default: 5)
SEED is the seed to use for random creation (default: a random seed is used)
SEED is the seed to use for puzzle creation (default: a random seed is used)
OUTPUT_FILE is the file where the puzzle should be printed (default: stdout)
SOLUTION_FILE is the file where the solution should be printed (default: not printed)
```
Expand Down
2 changes: 1 addition & 1 deletion main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ ProgramOptions parse_options(int argc, char *argv[]) {
std::cerr << "Where:" << std::endl
<< " MODE is the puzzle creation mode (only 'shuffle' is supported now)" << std::endl
<< " SIZE is the board size (default: 5)" << std::endl
<< " SEED is the seed to use for random creation (default: a random seed is used)" << std::endl
<< " SEED is the seed to use for puzzle creation (default: a random seed is used)" << std::endl
<< " OUTPUT_FILE is the file where the puzzle should be printed (default: stdout)" << std::endl
<< " SOLUTION_FILE is the file where the solution should be printed (default: not printed)" << std::endl;
}
Expand Down

0 comments on commit 42c6a0c

Please sign in to comment.