diff --git a/inc/Services/RequestVerificationService.hpp b/inc/Services/RequestVerificationService.hpp
index 9c1a86da8fec46969c9671c30e05e172cc95e423..fc1db397c2401d94048879a77f4896e158e4c7c8 100644
--- a/inc/Services/RequestVerificationService.hpp
+++ b/inc/Services/RequestVerificationService.hpp
@@ -23,9 +23,9 @@ public:
 	/**
 	 * TM[1,1] successful acceptance verification report
 	 *
-	 * Take a Message& reference as argument, that contains the necessary data to send the report.
-	 * The data is actually some data members of Message that contain the basic info of the
-	 * telecommand packet that accepted successfully
+	 * @param request Message& reference, that contains the necessary data to send the report.
+	 * The data is actually some data members of Message that contain the basic info
+	 * of the telecommand packet that accepted successfully
 	 *
 	 */
 	void successAcceptanceVerification(Message &request);
@@ -33,10 +33,9 @@ public:
 	/**
 	 * TM[1,2] failed acceptance verification report
 	 *
-	 * Take a Message& reference as argument, that contains the necessary data to send the report.
-	 * The data is actually some data members of Message that contain the basic info of the
-	 * telecommand packet that failed to be accepted
-	 *
+	 * @param request Message& reference, that contains the necessary data to send the report.
+	 * The data is actually some data members of Message that contain the basic
+	 * info of the telecommand packet that failed to be accepted
 	 */
 	void failAcceptanceVerification(Message &request);
 
@@ -44,7 +43,7 @@ public:
 	/**
  	 * TM[1,7] successful completion of execution verification report
 	 *
-	 * Take a Message& reference as argument, that contains the necessary data to send the report.
+	 * @param request Message& reference, that contains the necessary data to send the report.
 	 * The data is actually data members of Message that contain the basic info of the
 	 * telecommand packet that executed successfully
 	 *
@@ -54,7 +53,7 @@ public:
 	/**
 	 * TM[1,8] failed completion of execution verification report
 	 *
-	 * Take a Message& reference as argument, that contains the necessary data to send the report.
+	 * @param request Message& reference, that contains the necessary data to send the report.
 	 * The data is actually some data members of Message that contain the basic info of the
 	 * telecommand packet that failed  to be executed
 	 *
@@ -64,7 +63,7 @@ public:
 	/**
 	 * TM[1,10] failed routing verification report
 	 *
-	 * Take a Message& reference as argument, that contains the necessary data to send the report.
+	 * @param request Message& reference, that contains the necessary data to send the report.
 	 * The data is actually some data members of Message that contain the basic info of the
 	 * telecommand packet that failed the routing
 	 *