From 06d052d7af09b2d2966a8d2f4abbe24ffde72f0f Mon Sep 17 00:00:00 2001 From: Michael Cowell <115200557+SawdustSpike@users.noreply.github.com> Date: Fri, 12 May 2023 23:22:37 -0400 Subject: [PATCH 1/2] fixed spelling fixed spelling of separate on line 11 fixed spelling of instantiate on lines 17, 29 --- CarLotSimulatorApp/CarLotSimulator/Program.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CarLotSimulatorApp/CarLotSimulator/Program.cs b/CarLotSimulatorApp/CarLotSimulator/Program.cs index 927d2db5..5f51cc27 100644 --- a/CarLotSimulatorApp/CarLotSimulator/Program.cs +++ b/CarLotSimulatorApp/CarLotSimulator/Program.cs @@ -8,13 +8,13 @@ static void Main(string[] args) { //TODO - //Create a seperate class file called Car + //Create a separate class file called Car //Car shall have the following properties: Year, Make, Model, EngineNoise, HonkNoise, IsDriveable //Car shall have the following methods: MakeEngineNoise(), MakeHonkNoise() //The methods should take one string parameter: the respective noise property - //Now that the Car class is created we can instanciate 3 new cars + //Now that the Car class is created we can instantiate 3 new cars //Set the properties for each of the cars //Call each of the methods for each car @@ -26,7 +26,7 @@ static void Main(string[] args) //Create a CarLot class //It should have at least one property: a List of cars - //Instanciate the a Carlot at the beginning of the program and as you create a car add the car to the list. + //Instantiate the a Carlot at the beginning of the program and as you create a car add the car to the list. //At the end iterate through the list printing each of car's Year, Make, and Model to the console } } From 939e32bce6038051c5747bb05d48e5c5928ce073 Mon Sep 17 00:00:00 2001 From: Michael Cowell <115200557+SawdustSpike@users.noreply.github.com> Date: Fri, 30 Jun 2023 09:32:12 -0400 Subject: [PATCH 2/2] Update Program.cs --- CarLotSimulatorApp/CarLotSimulator/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CarLotSimulatorApp/CarLotSimulator/Program.cs b/CarLotSimulatorApp/CarLotSimulator/Program.cs index 5f51cc27..c853ecd4 100644 --- a/CarLotSimulatorApp/CarLotSimulator/Program.cs +++ b/CarLotSimulatorApp/CarLotSimulator/Program.cs @@ -26,8 +26,8 @@ static void Main(string[] args) //Create a CarLot class //It should have at least one property: a List of cars - //Instantiate the a Carlot at the beginning of the program and as you create a car add the car to the list. - //At the end iterate through the list printing each of car's Year, Make, and Model to the console + //Instantiate the Carlot at the beginning of the program and as you create a car add the car to the list. + //At the end iterate through the list printing each car's Year, Make, and Model to the console } } }