diff --git a/RTCP/Cobalt/GPUProc/src/cuda/Pipelines/Pipeline.cc b/RTCP/Cobalt/GPUProc/src/cuda/Pipelines/Pipeline.cc
index e84a3048457c4254749abbb2ee17ed272e8b8956..a168d03ebb2d77dfda1973d4a351efcbeb732727 100644
--- a/RTCP/Cobalt/GPUProc/src/cuda/Pipelines/Pipeline.cc
+++ b/RTCP/Cobalt/GPUProc/src/cuda/Pipelines/Pipeline.cc
@@ -213,7 +213,7 @@ namespace LOFAR
       //sections = program segments defined by the following omp section directive
       //           are distributed for parallel execution among available threads
       //parallel = directive explicitly instructs the compiler to parallelize the chosen block of code.
-      //  The two sections in this function are done in parallel with a seperate set of threads.
+      //  The 6 sections in this function are done in parallel with seperate threads.
 #     pragma omp parallel sections num_threads(6)
       {
 
diff --git a/RTCP/Cobalt/GPUProc/src/cuda/SubbandProcs/SubbandProc.cc b/RTCP/Cobalt/GPUProc/src/cuda/SubbandProcs/SubbandProc.cc
index 404d92618c6268f4afa13d430625b31b5ffb2213..79810a2bcd9272db50967ee5cb82aa344fd76158 100644
--- a/RTCP/Cobalt/GPUProc/src/cuda/SubbandProcs/SubbandProc.cc
+++ b/RTCP/Cobalt/GPUProc/src/cuda/SubbandProcs/SubbandProc.cc
@@ -86,7 +86,7 @@ namespace LOFAR
       }
 
       // NOTE: For an explanation of the different buffers being used, please refer
-      // to the document bf-pipeline.txt in the GPUProc/doc directory.
+      // to the document pipeline-buffers.txt in the GPUProc/doc directory.
       devA.reset(new gpu::DeviceMemory(context, devA_size));
       devB.reset(new gpu::DeviceMemory(context, devB_size));