Skip to content

Commit

Permalink
Minor updates, console message's english improved
Browse files Browse the repository at this point in the history
  • Loading branch information
duaneedwards committed Dec 10, 2014
1 parent 357038a commit 0689978
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/source/configuration/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Topshelf.
public TownCrier()
{
_timer = new Timer(1000) {AutoReset = true};
_timer.Elapsed += (sender, eventArgs) => Console.WriteLine("It is {0} an all is well", DateTime.Now);
_timer.Elapsed += (sender, eventArgs) => Console.WriteLine("It is {0} and all is well", DateTime.Now);
}
public void Start() { _timer.Start(); }
public void Stop() { _timer.Stop(); }
Expand All @@ -35,7 +35,7 @@ Topshelf.

x.SetDescription("Sample Topshelf Host"); //7
x.SetDisplayName("Stuff"); //8
x.SetServiceName("stuff"); //9
x.SetServiceName("Stuff"); //9
}); //10
}
}
Expand Down

0 comments on commit 0689978

Please sign in to comment.