Skip to content

Commit

Permalink
Merge pull request #25 from bennage/patch-1
Browse files Browse the repository at this point in the history
corrected a typo
  • Loading branch information
adamralph committed Apr 4, 2015
2 parents 85bf1fd + b6da92d commit 96ef3e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nancy/start.csx
Expand Up @@ -13,13 +13,13 @@ using Nancy.Routing;

NancyBootstrapperLocator.Bootstrapper = new Bootstrapper();

var adress = "http://localhost:1234/";
var address = "http://localhost:1234/";

var host = new NancyHost(new Uri(adress));
var host = new NancyHost(new Uri(address));
host.Start();

Console.WriteLine("Nancy is running at " + adress);
Console.WriteLine("Nancy is running at " + address);
Console.WriteLine("Press any key to end");
Console.ReadKey();

host.Stop();
host.Stop();

0 comments on commit 96ef3e5

Please sign in to comment.