From ba162c34cc70400a4432f56eb7011ff4be270bb5 Mon Sep 17 00:00:00 2001
From: eee4 <41441600+eee4@users.noreply.github.com>
Date: Tue, 22 Jul 2025 14:08:37 +0200
Subject: [PATCH] chore: nitpicky details
---
Controllers/CategoryController.cs | 2 +-
Controllers/StatisticController.cs | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Controllers/CategoryController.cs b/Controllers/CategoryController.cs
index d11e157..b0cefe5 100644
--- a/Controllers/CategoryController.cs
+++ b/Controllers/CategoryController.cs
@@ -29,7 +29,7 @@ public class CategoryController : ControllerBase
// GET /api/v1/categories
///
- /// Get a page category
+ /// Get a category page
///
///
/// Can (and will) return an empty list if no categories are found in DB.
diff --git a/Controllers/StatisticController.cs b/Controllers/StatisticController.cs
index e6da643..cd4cf78 100644
--- a/Controllers/StatisticController.cs
+++ b/Controllers/StatisticController.cs
@@ -10,12 +10,12 @@ namespace QuotifyBE.Controllers;
[EnableCors]
[Route("api/v1/stats")]
[Produces("application/json")]
-public class StatisticController : ControllerBase
+public class StatisticsController : ControllerBase
{
private readonly ApplicationDbContext _db;
- public StatisticController( ApplicationDbContext db)
+ public StatisticsController( ApplicationDbContext db)
{
_db = db;
}