diff --git a/Core.Thalos.DAL.API/Controllers/UserController.cs b/Core.Thalos.DAL.API/Controllers/UserController.cs
index d4d0a11..705f4a7 100644
--- a/Core.Thalos.DAL.API/Controllers/UserController.cs
+++ b/Core.Thalos.DAL.API/Controllers/UserController.cs
@@ -26,7 +26,7 @@ namespace LSA.Core.Thalos.API.Controllers
     public class UserController(IUserProvider service) : ControllerBase
     {
         /// 
-        /// mongo identifier all the users.
+        /// Gets all users.
         /// 
         /// A token to cancel the asynchronous operation.
         /// The  found entity.
@@ -41,7 +41,7 @@ namespace LSA.Core.Thalos.API.Controllers
         }
 
         /// 
-        /// mongo identifier the user by identifier.
+        /// Gets the user by mongo identifier.
         /// 
         /// The user Mongo identifier.
         /// A token to cancel the asynchronous operation.
@@ -58,7 +58,7 @@ namespace LSA.Core.Thalos.API.Controllers
         }
 
         /// 
-        /// mongo identifier the user by email.
+        /// Gets the user by email.
         /// 
         /// The user's email.
         /// A token to cancel the asynchronous operation.
@@ -106,7 +106,7 @@ namespace LSA.Core.Thalos.API.Controllers
         }
 
         /// 
-        /// Updates a full user by identifier.
+        /// Updates a full user by mongo identifier.
         /// 
         /// The user Mongo identifier.
         /// The user to update.
@@ -175,7 +175,7 @@ namespace LSA.Core.Thalos.API.Controllers
         }
 
         /// 
-        /// mongo identifier a token for the user, including roles, permissions, and modules.
+        /// Gets a token for the user, including roles, permissions, and modules.
         /// 
         /// The user's email.
         /// A token to cancel the asynchronous operation.
@@ -191,7 +191,7 @@ namespace LSA.Core.Thalos.API.Controllers
         }
 
         /// 
-        /// Deletes a user by identifier.
+        /// Deletes a user by mongo identifier.
         /// 
         /// The user Mongo identifier.
         /// A token to cancel the asynchronous operation.