chiark / gitweb /
Fix a typo in a Bridges error message.
authorJonas Kölker <jonaskoelker@yahoo.com>
Mon, 5 Oct 2015 10:19:47 +0000 (12:19 +0200)
committerSimon Tatham <anakin@pobox.com>
Sun, 18 Oct 2015 10:01:54 +0000 (11:01 +0100)
'contain_ER_s' becomes 'contains'.

bridges.c

index eb15437fb427bff7c95fe698da28bc112a4bb8e6..7a448e25baa5afefc80419ceb59d3ae5928561d2 100644 (file)
--- a/bridges.c
+++ b/bridges.c
@@ -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)