aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2023-08-27 13:11:13 +0100
committerSimon Tatham <anakin@pobox.com>2023-08-27 13:24:31 +0100
commitd3f825c98c2877ca3e2763492ba99973c1b9dc5f (patch)
tree6372a30ad2c52eb329302183947df1ad08bb89f0
parentf279c5eba035d018a8805a65a8a245b8b8d2ea2e (diff)
downloadpuzzles-d3f825c98c2877ca3e2763492ba99973c1b9dc5f.zip
puzzles-d3f825c98c2877ca3e2763492ba99973c1b9dc5f.tar.gz
puzzles-d3f825c98c2877ca3e2763492ba99973c1b9dc5f.tar.bz2
puzzles-d3f825c98c2877ca3e2763492ba99973c1b9dc5f.tar.xz
Singles: fix spelling in a validate_params error.
'height', not 'neight'. Apparently has been misspelled since the puzzle was first committed. I suppose they look similar enough that it never caused a problem.
-rw-r--r--singles.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/singles.c b/singles.c
index 340d7b5..a310a4a 100644
--- a/singles.c
+++ b/singles.c
@@ -258,7 +258,7 @@ static game_params *custom_params(const config_item *cfg)
static const char *validate_params(const game_params *params, bool full)
{
if (params->w < 2 || params->h < 2)
- return "Width and neight must be at least two";
+ return "Width and height must be at least two";
if (params->w > 10+26+26 || params->h > 10+26+26)
return "Puzzle is too large";
if (full) {