From d3f825c98c2877ca3e2763492ba99973c1b9dc5f Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sun, 27 Aug 2023 13:11:13 +0100 Subject: [PATCH] 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. --- singles.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {