From 4930a624dcb71459dfa627137bd28bb2e0b0fc77 Mon Sep 17 00:00:00 2001 From: Josh Creek Date: Sun, 23 May 2021 23:00:28 +0100 Subject: [PATCH] feat(*): Add explanation text for responding to a question --- CityFinder/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CityFinder/Program.cs b/CityFinder/Program.cs index 4e1c737..3ebdcae 100644 --- a/CityFinder/Program.cs +++ b/CityFinder/Program.cs @@ -76,7 +76,7 @@ namespace CityFinder /// Returns a valid country code. 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(); if (userResponse.ToLower() != "y") {