diff --git a/Assets/Scripts/Logic/Data/World/Unit.cs b/Assets/Scripts/Logic/Data/World/Unit.cs
index 9237940dc664911588ea8e496096eb210167f508..b9424df66e27e93563881ddf3e4ff2d50fd56629 100644
--- a/Assets/Scripts/Logic/Data/World/Unit.cs
+++ b/Assets/Scripts/Logic/Data/World/Unit.cs
@@ -1,5 +1,4 @@
-ďťżusing System;
-using System.Collections.Generic;
+ďťżusing System.Collections.Generic;
 using System.Linq;
 using Logic.Event.World.Unit;
 
diff --git a/Assets/Scripts/LogicTests/GameOverviewTest.cs b/Assets/Scripts/LogicTests/GameOverviewTest.cs
index 44b07a610c1715dd15a4b7581c2447014a987776..0ac2cdcfc58180f9179e181cba3404371ea9d090 100644
--- a/Assets/Scripts/LogicTests/GameOverviewTest.cs
+++ b/Assets/Scripts/LogicTests/GameOverviewTest.cs
@@ -1,7 +1,6 @@
 ďťżusing System;
 using System.Linq;
 using Logic.Command;
-using Logic.Command.Unit;
 using Logic.Data;
 using NUnit.Framework;
 
diff --git a/Assets/Scripts/LogicTests/GameTestUtils.cs b/Assets/Scripts/LogicTests/GameTestUtils.cs
index aba6a1dc98280c7c1133d2646d1ed3b6d2ec7510..a6d6740d65964602e92854bb4b3127ecdbbc614a 100644
--- a/Assets/Scripts/LogicTests/GameTestUtils.cs
+++ b/Assets/Scripts/LogicTests/GameTestUtils.cs
@@ -154,7 +154,7 @@ public static class GameTestUtils {
 		public int BuildingCost { get; set; } = 3;
 		public int DestroyRefund { get; set; } = 1;
 		public int UpgradeCost { get; set; } = 2;
-		public ITowerTypeData AfterUpgradeType { get; set; } = null;
+		public ITowerTypeData AfterUpgradeType { get; set; }
 	}
 }
 }
diff --git a/Assets/Scripts/Presentation/UI/MainMenu.cs b/Assets/Scripts/Presentation/UI/MainMenu.cs
index ce5f73d2c873b1faec9dff17350c768099104873..3d33e16b8f987ca50d54d1e58137e87c9ef7bf85 100644
--- a/Assets/Scripts/Presentation/UI/MainMenu.cs
+++ b/Assets/Scripts/Presentation/UI/MainMenu.cs
@@ -46,7 +46,7 @@ public class MainMenu : MonoBehaviour {
 		textContent.Clear();
 		foreach (string entry in gameRules.Split('\n')) {
 			bool isTitle = entry.StartsWith("#");
-			var label = new Label() { text = isTitle ? entry.Substring(1) : entry };
+			var label = new Label { text = isTitle ? entry.Substring(1) : entry };
 			label.AddToClassList(isTitle ? TitleStyle : ParagraphStyle);
 			textContent.Add(label);
 		}
diff --git a/Assets/Scripts/Presentation/UI/TowerPlacingUI.cs b/Assets/Scripts/Presentation/UI/TowerPlacingUI.cs
index 23db44127046c53151585cdfd5e420da8eeac803..5986fa6ea838597f5e12c3af058ccfb83a594f67 100644
--- a/Assets/Scripts/Presentation/UI/TowerPlacingUI.cs
+++ b/Assets/Scripts/Presentation/UI/TowerPlacingUI.cs
@@ -168,7 +168,7 @@ public class TowerPlacingUI : MonoBehaviour {
 	private void ShowTowerTypeStats(ITowerData towerType, VisualElement statsContainer) {
 		statsContainer.Clear();
 		if (towerType != null) {
-			string[] stats = new[] {
+			string[] stats = {
 				$"Damage: {towerType.Damage}", $"Range: {towerType.Range}", $"Building Cost: {towerType.BuildingCost}",
 				$"Destroy Refund: {towerType.DestroyRefund}", $"Cooldown Time: {towerType.CooldownTime}",
 				$"UpgradeCost: {towerType.UpgradeCost}"
@@ -255,7 +255,7 @@ public class TowerPlacingUI : MonoBehaviour {
 	public event Action<Tower> OnTowerUpgraded;
 
 	/// <summary>
-	///     Invoked when the next button is clicke
+	///     Invoked when the next button is clicked
 	/// </summary>
 	public event Action OnNextClicked;