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(); } } }