From ffe939a51bb27266c1ae9679c5daf1619c1091c2 Mon Sep 17 00:00:00 2001 From: Graeme Wicksted Date: Fri, 23 Sep 2016 12:28:27 -0400 Subject: [PATCH] Minor text change Minor console text change and removed superflous spaces --- .../Nancy.Templates.CSharp.EmptySelfHost/Program.cs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/Nancy.Templates/Nancy.Templates.CSharp.EmptySelfHost/Program.cs b/src/Nancy.Templates/Nancy.Templates.CSharp.EmptySelfHost/Program.cs index 3a7bbae..75bcea9 100644 --- a/src/Nancy.Templates/Nancy.Templates.CSharp.EmptySelfHost/Program.cs +++ b/src/Nancy.Templates/Nancy.Templates.CSharp.EmptySelfHost/Program.cs @@ -1,4 +1,4 @@ -namespace Nancy.Templates.CSharp.EmptySelfHost +namespace Nancy.Templates.CSharp.EmptySelfHost { using System; using Nancy.Hosting.Self; @@ -7,16 +7,15 @@ class Program { static void Main(string[] args) { - var uri = - new Uri("http://localhost:3579"); + var uri = new Uri("http://localhost:3579"); using (var host = new NancyHost(uri)) { host.Start(); Console.WriteLine("Your application is running on " + uri); - Console.WriteLine("Press any [Enter] to close the host."); - Console.ReadLine(); + Console.WriteLine("Press [Enter] to close the host."); + Console.ReadLine(); } } }