Merge pull request #753 from cuevaskoch/main

Correct typo in C# 96_Word
This commit is contained in:
Jeff Atwood
2022-05-31 16:04:16 -07:00
committed by GitHub

View File

@@ -40,7 +40,7 @@ namespace word
if ((guess.Length != 5) || (guess.Equals("?")) || (!guess.All(char.IsLetter)))
{
guess = "";
Console.WriteLine("You must guess a give letter word. Start again.");
Console.WriteLine("You must guess a five letter word. Start again.");
}
}