diff --git a/02-MSA-hello-world-gpu/.master/hello-world.cu b/02-MSA-hello-world-gpu/.master/hello-world.cu
index 8c71020c9251d74547052a39001ae1bd874d9f4d..5aa2b440cfc09ed070451feb5fa7c19ef1c790cd 100644
--- a/02-MSA-hello-world-gpu/.master/hello-world.cu
+++ b/02-MSA-hello-world-gpu/.master/hello-world.cu
@@ -51,7 +51,7 @@ int main(int argc, char** argv){
     CUDA_RT_CALL( cudaPeekAtLastError() );
     CUDA_RT_CALL( cudaDeviceSynchronize() );
     
-    // TODO: Implement the MPI_Recv() call to receive the "payload" from rank 1 using directly "d_payload" as the target buffer on the GPU
+    // TODO: Implement the MPI_Recv() call to receive the "payload" from rank 0 using directly "d_payload" as the target buffer on the GPU
     if (rank == 1) {
     #ifdef SOLUTION
         MPI_Recv(d_payload, 6, MPI_CHAR, 0, tag, MPI_COMM_WORLD, &stat);