From 06f392a929289255d9a311323568b432b92df1b3 Mon Sep 17 00:00:00 2001
From: Michael Krisper <michael.krisper@tugraz.at>
Date: Tue, 29 Mar 2022 14:28:10 +0200
Subject: [PATCH] CombustionEngineNoDoubleClutchIdleController: corrected typo

---
 .../VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs     | 2 +-
 .../Models/SimulationComponent/Impl/CombustionEngine.cs       | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs b/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs
index 9c2710d6b9..705f1f9927 100644
--- a/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs
+++ b/VectoCore/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs
@@ -189,7 +189,7 @@ namespace TUGraz.VectoCore.Models.Simulation.Impl
 				.AddComponent(new VTPGearbox(container, data), container)
 				.AddComponent(data.Retarder.Type == RetarderType.TransmissionInputRetarder ? new Retarder(container, data.Retarder.LossMap, data.Retarder.Ratio) : null)
 				.AddComponent(new Clutch(container, data.EngineData))
-				.AddComponent(engine, new CombustionEngine.CombustionEngineNoDubleclutchIdleController(engine, container));
+				.AddComponent(engine, new CombustionEngine.CombustionEngineNoDoubleClutchIdleController(engine, container));
 
 			new ZeroMileageCounter(container);
 
diff --git a/VectoCore/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs b/VectoCore/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs
index ac304a4120..b6084b02cf 100644
--- a/VectoCore/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs
+++ b/VectoCore/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs
@@ -802,9 +802,9 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl
 			}
 		}
 
-		protected internal class CombustionEngineNoDubleclutchIdleController : CombustionEngineIdleController
+		protected internal class CombustionEngineNoDoubleClutchIdleController : CombustionEngineIdleController
 		{
-			public CombustionEngineNoDubleclutchIdleController(CombustionEngine combustionEngine, IDataBus dataBus) : base(combustionEngine, dataBus)
+			public CombustionEngineNoDoubleClutchIdleController(CombustionEngine combustionEngine, IDataBus dataBus) : base(combustionEngine, dataBus)
 			{
 			}
 
-- 
GitLab