diff options
| author | Jonas Kölker <jonaskoelker@yahoo.com> | 2015-10-05 12:19:47 +0200 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2015-10-18 11:01:54 +0100 |
| commit | 2fb2774fcdd207a092b065faf10f081294c88f90 (patch) | |
| tree | 84b434c051e1afc3ffc4bacaccec31a6a0d699bf | |
| parent | 75335f199ea5fbc7b1af890473ec98dc340c2ae8 (diff) | |
| download | puzzles-2fb2774fcdd207a092b065faf10f081294c88f90.zip puzzles-2fb2774fcdd207a092b065faf10f081294c88f90.tar.gz puzzles-2fb2774fcdd207a092b065faf10f081294c88f90.tar.bz2 puzzles-2fb2774fcdd207a092b065faf10f081294c88f90.tar.xz | |
Fix a typo in a Bridges error message.
'contain_ER_s' becomes 'contains'.
| -rw-r--r-- | bridges.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2029,7 +2029,7 @@ static char *validate_desc(const game_params *params, const char *desc) else if (!*desc) return "Game description shorter than expected"; else - return "Game description containers unexpected character"; + return "Game description contains unexpected character"; desc++; } if (*desc || i > wh) |