From 97038c68b751dca71c28e531abc023f43b1e4e91 Mon Sep 17 00:00:00 2001 From: Peter Kottas Date: Thu, 29 Dec 2016 07:44:00 +0100 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3eeb7c2..e333acc 100644 --- a/README.md +++ b/README.md @@ -55,13 +55,13 @@ Using nuget: { this.StartBase(); Timers.Start("Poller", 1000, () => - { - Console.WriteLine("Polling at {0}\n", DateTime.Now.ToString("o"))); - }, + { + Console.WriteLine("Polling at {0}\n", DateTime.Now.ToString("o"))); + }, (e) => - { - Console.WriteLine("Exception while polling: {0}\n", e.ToString())); - }); + { + Console.WriteLine("Exception while polling: {0}\n", e.ToString())); + }); Console.WriteLine("I started"); }