diff --git a/software/1_sem/se-12-log-entry/se-12-log-entry/Program.cs b/software/1_sem/se-12-log-entry/se-12-log-entry/Program.cs index 378c518..02acf04 100644 --- a/software/1_sem/se-12-log-entry/se-12-log-entry/Program.cs +++ b/software/1_sem/se-12-log-entry/se-12-log-entry/Program.cs @@ -9,11 +9,11 @@ namespace se_12_log_entry public static void Main(string[] args) { Stack logEntries = new Stack(); - int id_counter = 0; - while (id_counter < 11) + int idCounter = 0; + while (idCounter < 11) { - logEntries.Push(new LogEntry(id_counter, DateTime.Now)); - id_counter++; + logEntries.Push(new LogEntry(idCounter, DateTime.Now)); + idCounter++; LogEntry newestEntry = logEntries.Peek(); Console.WriteLine("ID:"