diff --git a/src/TurbulenceModels/turbulenceModels/RAS/LRR/LRR.C b/src/TurbulenceModels/turbulenceModels/RAS/LRR/LRR.C
index 3bfa8a34c0023011b77d50dbb33a0aafa02d5675..f0baee8700758e6df6a86125ed7958a418fe5549 100644
--- a/src/TurbulenceModels/turbulenceModels/RAS/LRR/LRR.C
+++ b/src/TurbulenceModels/turbulenceModels/RAS/LRR/LRR.C
@@ -278,8 +278,8 @@ void LRR<BasicTurbulenceModel>::correct()
     bound(epsilon_, this->epsilonMin_);
 
 
-    // Reynolds stress equation
-
+    // Correct the trace of the tensorial production to be consistent
+    // with the near-wall generation from the wall-functions
     const fvPatchList& patches = this->mesh_.boundary();
 
     forAll(patches, patchi)
@@ -300,7 +300,7 @@ void LRR<BasicTurbulenceModel>::correct()
         }
     }
 
-
+    // Reynolds stress equation
     tmp<fvSymmTensorMatrix> REqn
     (
         fvm::ddt(alpha, rho, R)