From 9fcc37315e2dc070cb029a860ed958a6f4030255 Mon Sep 17 00:00:00 2001 From: Tony Bark Date: Tue, 11 Mar 2025 18:42:14 -0400 Subject: [PATCH] Made some clarifications in comments --- Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Program.cs b/Program.cs index ce1a0c9..de15230 100644 --- a/Program.cs +++ b/Program.cs @@ -58,7 +58,7 @@ if (Console.ReadKey().Key == ConsoleKey.Y) var filePath = Path.Combine(appPath, scheduleFile); var appendSchedule = false; - // If the file already exists, assume the schedule was written + // If the file already exists, assume a previous schedule was written if (File.Exists(filePath)) { Console.WriteLine($"{Environment.NewLine}Add another schedule? Y/N"); @@ -77,7 +77,7 @@ if (Console.ReadKey().Key == ConsoleKey.Y) outputFile.WriteLine(line); } - // Clear list and start over + // Clear list from memory before exit storeSchedule.Clear(); } else