From 24c15117cea6720e6d88a85a8ec266f91cb7cb4a Mon Sep 17 00:00:00 2001 From: TBirdSoars <31261091+TBirdSoars@users.noreply.github.com> Date: Sun, 21 Nov 2021 00:23:40 -0500 Subject: [PATCH] error messages --- Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Program.cs b/Program.cs index 14c0665..0d5cebb 100644 --- a/Program.cs +++ b/Program.cs @@ -212,13 +212,13 @@ private static async Task DownloadArchive(Uri uri, string dest) { if (message.StatusCode != HttpStatusCode.OK) { - Console.WriteLine("Downlaod Error: Did not receive 200 OK status code."); + Console.WriteLine("DownloadArchive Error: Did not receive 200 OK status code."); return; } if (message.Content == null) { - Console.WriteLine("Downlaod Error: Response message content was null."); + Console.WriteLine("DownloadArchive Error: Response message content was null."); return; }