diff --git a/LinkCrawler/LinkCrawler/Program.cs b/LinkCrawler/LinkCrawler/Program.cs index bee8af7..ecb6877 100644 --- a/LinkCrawler/LinkCrawler/Program.cs +++ b/LinkCrawler/LinkCrawler/Program.cs @@ -32,7 +32,7 @@ static void Main(string[] args) } } linkCrawler.Start(); - // this line *has* to be here in order to flush the output to the console, otherwise we don't see anything - why? + // this line *has* to be here, because otherwise the app finishes before the asynchronous HTTP requests have returned Console.Read(); } }