diff --git a/src/Controller/HistoryContrller.php b/src/Controller/HistoryController.php
similarity index 91%
rename from src/Controller/HistoryContrller.php
rename to src/Controller/HistoryController.php
index c91030fa84a13c894ba8b540ed9b6effb5731aa6..94090d9f12cdba4d0fdcc0ad7c0d96193621b247 100644
--- a/src/Controller/HistoryContrller.php
+++ b/src/Controller/HistoryController.php
@@ -6,7 +6,7 @@ use App\Repository\HistoryRepository;
 use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
 use Symfony\Component\Routing\Annotation\Route;
 
-class HistoryContrller extends AbstractController
+class HistoryController extends AbstractController
 {
     #[Route('/history/{deviceId}', methods: ['GET'], name: 'app_history')]
     public function getHistory(HistoryRepository $historyRepository, string $deviceId = null) {