From ed6367352d1fc75dd4fc6009dc546a5a973c7cc7 Mon Sep 17 00:00:00 2001 From: Jeff Lewis Date: Mon, 1 Mar 2021 13:39:18 -0700 Subject: [PATCH] Fixed prompt msg --- 02 Amazing/csharp/Amazing.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02 Amazing/csharp/Amazing.cs b/02 Amazing/csharp/Amazing.cs index f62549d4..995b58d6 100644 --- a/02 Amazing/csharp/Amazing.cs +++ b/02 Amazing/csharp/Amazing.cs @@ -165,7 +165,7 @@ namespace Amazing private String DisplayTextAndGetInput(String text) { - Console.Write(text); + Console.WriteLine(text); return Console.ReadLine(); }