diff --git a/src/Services/RequestVerificationService.cpp b/src/Services/RequestVerificationService.cpp
index 142eca7e41b7a5e718d15e241a3958e24f9ca2fd..ccacfb591ee31076c14501d29792e5b560c8130a 100644
--- a/src/Services/RequestVerificationService.cpp
+++ b/src/Services/RequestVerificationService.cpp
@@ -7,7 +7,7 @@ void RequestVerificationService::successAcceptanceVerification(Message::PacketTy
                                                                uint16_t packetSeqCount) {
 	// TM[1,1] successful acceptance verification report
 
-	//parameters have max values defined from standard
+	// parameters have max values defined from standard
 	assert(apid < 2048);
 	assert(seqFlag < 4);
 	assert(packetSeqCount < 16384);
@@ -32,7 +32,7 @@ RequestVerificationService::failAcceptanceVerification(Message::PacketType packe
                                                        uint16_t errorCode) {
 	// TM[1,2] failed acceptance verification report
 
-	//parameters have max values defined from standard
+	// parameters have max values defined from standard
 	assert(apid < 2048);
 	assert(seqFlag < 4);
 	assert(packetSeqCount < 16384);
@@ -56,7 +56,7 @@ void RequestVerificationService::successExecutionVerification(Message::PacketTyp
                                                               uint16_t packetSeqCount) {
 	// TM[1,7] successful completion of execution verification report
 
-	//parameters have max values defined from standard
+	// parameters have max values defined from standard
 	assert(apid < 2048);
 	assert(seqFlag < 4);
 	assert(packetSeqCount < 16384);
@@ -81,7 +81,7 @@ RequestVerificationService::failExecutionVerification(Message::PacketType packet
                                                       uint16_t errorCode) {
 	// TM[1,8] failed completion of execution verification report
 
-	//parameters have max values defined from standard
+	// parameters have max values defined from standard
 	assert(apid < 2048);
 	assert(seqFlag < 4);
 	assert(packetSeqCount < 16384);
@@ -107,7 +107,7 @@ RequestVerificationService::failRoutingVerification(Message::PacketType packetTy
                                                     uint16_t errorCode) {
 	// TM[1,10] failed routing verification report
 
-	//parameters have max values defined from standard
+	// parameters have max values defined from standard
 	assert(apid < 2048);
 	assert(seqFlag < 4);
 	assert(packetSeqCount < 16384);
diff --git a/src/Services/TestService.cpp b/src/Services/TestService.cpp
index d7d83a94da551e344334262fc94af4c04954e60f..670a8e2fe18cdf1403490b7393d7e7e9030b01d9 100644
--- a/src/Services/TestService.cpp
+++ b/src/Services/TestService.cpp
@@ -12,6 +12,6 @@ void TestService::onBoardConnection(Message &request) {
 	Message report = createTM(4);
 
 	report.appendUint16(request.readUint16());
-	//just print it on the screen
+	// just print it on the screen
 	storeMessage(report);
 }