diff options
| author | Simon Tatham <anakin@pobox.com> | 2023-08-27 13:11:13 +0100 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2023-08-27 13:24:31 +0100 |
| commit | d3f825c98c2877ca3e2763492ba99973c1b9dc5f (patch) | |
| tree | 6372a30ad2c52eb329302183947df1ad08bb89f0 /singles.c | |
| parent | f279c5eba035d018a8805a65a8a245b8b8d2ea2e (diff) | |
| download | puzzles-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.
Diffstat (limited to 'singles.c')
| -rw-r--r-- | singles.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |