diff --git a/Documentation/Examples/Solvers/Linear/IterativeLinearSolverExample.cpp b/Documentation/Examples/Solvers/Linear/IterativeLinearSolverExample.cpp
index fe4d42b14777b6c32530a93a1f8d4fc7e70751be..222a8d86616cbffe00b36df7ea809f78a6f34906 100644
--- a/Documentation/Examples/Solvers/Linear/IterativeLinearSolverExample.cpp
+++ b/Documentation/Examples/Solvers/Linear/IterativeLinearSolverExample.cpp
@@ -52,7 +52,7 @@ void iterativeLinearSolverExample()
    std::cout << *matrix_ptr << std::endl;
 
    /***
-    * Set the right-hand side vector
+    * Set the right-hand side vector.
     */
    Vector x( size, 1.0 );
    Vector b( size );
@@ -61,7 +61,7 @@ void iterativeLinearSolverExample()
    std::cout << "Vector b = " << b << std::endl;
 
    /***
-    * Solve the linear system
+    * Solve the linear system.
     */
    using LinearSolver = TNL::Solvers::Linear::TFQMR< MatrixType >;
    LinearSolver solver;
diff --git a/Documentation/Examples/Solvers/Linear/IterativeLinearSolverWithMonitorExample.cpp b/Documentation/Examples/Solvers/Linear/IterativeLinearSolverWithMonitorExample.cpp
index a37da76bb31f4e55d4ff37d04f240a6691c5eb9e..92cf9c840276d9384b0ce19c25ad5aca9cc06674 100644
--- a/Documentation/Examples/Solvers/Linear/IterativeLinearSolverWithMonitorExample.cpp
+++ b/Documentation/Examples/Solvers/Linear/IterativeLinearSolverWithMonitorExample.cpp
@@ -54,7 +54,7 @@ void iterativeLinearSolverExample()
    std::cout << *matrix_ptr << std::endl;
 
    /***
-    * Set the right-hand side vector
+    * Set the right-hand side vector.
     */
    Vector x( size, 1.0 );
    Vector b( size );
@@ -63,7 +63,7 @@ void iterativeLinearSolverExample()
    std::cout << "Vector b = " << b << std::endl;
 
    /***
-    * Setup solver of the linear system
+    * Setup solver of the linear system.
     */
    using LinearSolver = TNL::Solvers::Linear::Jacobi< MatrixType >;
    LinearSolver solver;
@@ -71,7 +71,7 @@ void iterativeLinearSolverExample()
    solver.setOmega( 0.0005 );
 
    /***
-    * Setup monitor of the iterative solver
+    * Setup monitor of the iterative solver.
     */
    using IterativeSolverMonitorType = TNL::Solvers::IterativeSolverMonitor< double, int >;
    IterativeSolverMonitorType monitor;
diff --git a/Documentation/Examples/Solvers/Linear/IterativeLinearSolverWithTimerExample.cpp b/Documentation/Examples/Solvers/Linear/IterativeLinearSolverWithTimerExample.cpp
index 278ccbad0e85fcf103a2d4b24950ded7aa0358df..a9ae53c1d5dca47e46d348c9595c94af8780992d 100644
--- a/Documentation/Examples/Solvers/Linear/IterativeLinearSolverWithTimerExample.cpp
+++ b/Documentation/Examples/Solvers/Linear/IterativeLinearSolverWithTimerExample.cpp
@@ -55,7 +55,7 @@ void iterativeLinearSolverExample()
    std::cout << *matrix_ptr << std::endl;
 
    /***
-    * Set the right-hand side vector
+    * Set the right-hand side vector.
     */
    Vector x( size, 1.0 );
    Vector b( size );
@@ -64,7 +64,7 @@ void iterativeLinearSolverExample()
    std::cout << "Vector b = " << b << std::endl;
 
    /***
-    * Setup solver of the linear system
+    * Setup solver of the linear system.
     */
    using LinearSolver = TNL::Solvers::Linear::Jacobi< MatrixType >;
    LinearSolver solver;
@@ -72,7 +72,7 @@ void iterativeLinearSolverExample()
    solver.setOmega( 0.0005 );
 
    /***
-    * Setup monitor of the iterative solver
+    * Setup monitor of the iterative solver.
     */
    using IterativeSolverMonitorType = TNL::Solvers::IterativeSolverMonitor< double, int >;
    IterativeSolverMonitorType monitor;