feat(*): Add explanation text for responding to a question

This commit is contained in:
Josh Creek
2021-05-23 23:00:28 +01:00
parent d87f9977ef
commit 4930a624dc
+1 -1
View File
@@ -76,7 +76,7 @@ namespace CityFinder
/// <returns>Returns a valid country code.</returns> /// <returns>Returns a valid country code.</returns>
private static string GetUserCountryInput() private static string GetUserCountryInput()
{ {
Console.WriteLine("Do you know the valid country code you need?"); Console.WriteLine("Do you know the valid country code you need? (Enter 'y' or 'n')");
string userResponse = Console.ReadLine(); string userResponse = Console.ReadLine();
if (userResponse.ToLower() != "y") if (userResponse.ToLower() != "y")
{ {