From 42c6a0c663b655536001b7fa7809299ddb200588 Mon Sep 17 00:00:00 2001 From: Marco Leogrande Date: Fri, 2 Feb 2024 19:13:58 -0800 Subject: [PATCH] Microfix in help text --- README.md | 2 +- main.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 72afbfa..ec31813 100644 --- a/README.md +++ b/README.md @@ -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) ``` diff --git a/main.cc b/main.cc index 472b439..7e83b17 100644 --- a/main.cc +++ b/main.cc @@ -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; }