diff --git a/src/core/hle/service/apt.cpp b/src/core/hle/service/apt.cpp
index e5c9dd873cdf36c68a47062d9eaee1ff5ea31773..4f8d7248ddf80da06d8a4e027aabc81a4c44a815 100644
--- a/src/core/hle/service/apt.cpp
+++ b/src/core/hle/service/apt.cpp
@@ -8,6 +8,9 @@
 #include "core/hle/hle.h"
 #include "core/hle/service/apt.h"
 
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Namespace APT_U
+
 namespace APT_U {
 
 void Initialize() {
diff --git a/src/core/hle/service/apt.h b/src/core/hle/service/apt.h
index 9345eabc3e4ad0b2d1b20d14874e235f2fa978a1..e74baac0c09dd06249a7ecda1a2c81abad537103 100644
--- a/src/core/hle/service/apt.h
+++ b/src/core/hle/service/apt.h
@@ -7,7 +7,7 @@
 #include "core/hle/service/service.h"
 
 ////////////////////////////////////////////////////////////////////////////////////////////////////
-// Namespace Service
+// Namespace APT_U
 
 namespace APT_U {
 
@@ -17,6 +17,7 @@ namespace APT_U {
 // exactly the same, however certain commands are only accessible with APT:S(NS module will call 
 // svcBreak when the command isn't accessible). See http://3dbrew.org/wiki/NS#APT_Services.
 
+/// Interface to "APT:U" service
 class Interface : public Service::Interface {
 public:
 
diff --git a/src/core/hle/service/gsp.cpp b/src/core/hle/service/gsp.cpp
index 6dfd76de3e4d91e72dc96176812212aca37065fb..7c80ab8b59416bec12c9785ff482069346765889 100644
--- a/src/core/hle/service/gsp.cpp
+++ b/src/core/hle/service/gsp.cpp
@@ -8,6 +8,9 @@
 #include "core/hle/hle.h"
 #include "core/hle/service/gsp.h"
 
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Namespace GSP_GPU
+
 namespace GSP_GPU {
 
 const HLE::FunctionDef FunctionTable[] = {
diff --git a/src/core/hle/service/gsp.h b/src/core/hle/service/gsp.h
index 0a9d452f62485d0ac41c046ecf0e90187644cab1..3b184608211ebc57c8a354e92c799d545405fea6 100644
--- a/src/core/hle/service/gsp.h
+++ b/src/core/hle/service/gsp.h
@@ -7,10 +7,11 @@
 #include "core/hle/service/service.h"
 
 ////////////////////////////////////////////////////////////////////////////////////////////////////
-// Namespace Service
+// Namespace GSP_GPU
 
 namespace GSP_GPU {
 
+/// Interface to "srv:" service
 class Interface : public Service::Interface {
 public:
 
diff --git a/src/core/hle/service/srv.cpp b/src/core/hle/service/srv.cpp
index ad744846176def4075fe0e1c670c2351e7cd6299..1ec78dd15043e3c8a200ffa56fe1146b9c003566 100644
--- a/src/core/hle/service/srv.cpp
+++ b/src/core/hle/service/srv.cpp
@@ -7,6 +7,9 @@
 #include "core/hle/service/service.h"
 
 
+////////////////////////////////////////////////////////////////////////////////////////////////////
+// Namespace SRV
+
 namespace SRV {
 
 void Initialize() {
diff --git a/src/core/hle/service/srv.h b/src/core/hle/service/srv.h
index a1d26a34d843b606339cc613938017057dc781ed..d9ac8fc888c360ccfefbe9f3aa593b77a4e24e54 100644
--- a/src/core/hle/service/srv.h
+++ b/src/core/hle/service/srv.h
@@ -4,11 +4,12 @@
 
 #include "core/hle/service/service.h"
 
-namespace SRV {
-
 ////////////////////////////////////////////////////////////////////////////////////////////////////
-// Interface to "SRV" service
+// Namespace SRV
+
+namespace SRV {
 
+/// Interface to "srv:" service
 class Interface : public Service::Interface {
 
 public: