diff --git a/src/myblockproblem.hh b/src/myblockproblem.hh
index 4bfa8174cd8d0eb5834974f145e4db85abbf5218..69e14ede21294eca9bf96003ca697ce9725c9a58 100644
--- a/src/myblockproblem.hh
+++ b/src/myblockproblem.hh
@@ -91,7 +91,7 @@ class MyBlockProblem<MyConvexProblemTypeTEMPLATE>::IterateObject {
       for (it = problem.A[m].begin(); it != end; ++it) {
         int const j = it.index();
         if (j == m)
-          localA = &(*it); // localA = &A[m][m]
+          localA = &(*it); // localA = A[m][m]
         else
           it->mmv(u[j], localb); // localb -= A[m][j] * u[j]
       }