From 416833daf276e0b979f875de9682d40745af9b4a Mon Sep 17 00:00:00 2001
From: thodkatz <thodkatz@gmail.com>
Date: Thu, 22 Nov 2018 00:13:52 +0200
Subject: [PATCH] Formatting comments

---
 src/Services/RequestVerificationService.cpp | 10 +++++-----
 src/Services/TestService.cpp                |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/Services/RequestVerificationService.cpp b/src/Services/RequestVerificationService.cpp
index 142eca7e..ccacfb59 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 d7d83a94..670a8e2f 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);
 }
-- 
GitLab