From 20580d7f5941b801753665a444ae05b352162ee6 Mon Sep 17 00:00:00 2001 From: Shelley Hicklin Date: Thu, 15 Sep 2016 14:56:36 -0400 Subject: [PATCH] editing the type-o that i missed before very sad that I might have made it harder for other students by missing this reference to repisitory in the program.cs file --- .../CodeLou.CSharp.Week3.Challenge/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Challenges/Week3/CodeLou.CSharp.Week3.Challenge/CodeLou.CSharp.Week3.Challenge/Program.cs b/Challenges/Week3/CodeLou.CSharp.Week3.Challenge/CodeLou.CSharp.Week3.Challenge/Program.cs index c94ff5a..b5282c4 100644 --- a/Challenges/Week3/CodeLou.CSharp.Week3.Challenge/CodeLou.CSharp.Week3.Challenge/Program.cs +++ b/Challenges/Week3/CodeLou.CSharp.Week3.Challenge/CodeLou.CSharp.Week3.Challenge/Program.cs @@ -31,7 +31,7 @@ static void Main(string[] args) // Task 4: // We want our application to load data and to save data. The process for reminders has already been created. You will need to do the same thing // for the other data types. - var reminderRepository = new ReminderRepisitory(); + var reminderRepository = new ReminderRepository(); if (File.Exists("Reminders.json")) //Note: these files are created in the same folder as your .exe //Note: What happens when this file is improperly formatte? Can you handle this case? reminderRepository.LoadFromJson(File.ReadAllText("Reminders.json"));