From 2e4a52c3b4ad48bb66f2fca7b4c4a89eb060153d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Oberhuber?= <oberhuber.tomas@gmail.com> Date: Mon, 20 Dec 2021 22:26:36 +0100 Subject: [PATCH] Fixing typos. --- src/TNL/Solvers/IterativeSolver.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/TNL/Solvers/IterativeSolver.h b/src/TNL/Solvers/IterativeSolver.h index af3d7f571f..e943b3fc68 100644 --- a/src/TNL/Solvers/IterativeSolver.h +++ b/src/TNL/Solvers/IterativeSolver.h @@ -17,7 +17,11 @@ #include <TNL/Solvers/IterativeSolverMonitor.h> namespace TNL { -namespace Solvers { + + /** + * \brief Namespace for solvers. + */ + namespace Solvers { /** * \brief Base class for iterative solvers. @@ -135,7 +139,7 @@ class IterativeSolver /** * \brief Sets the residue limit for the divergence criterion. * - * The divergence occurs when the residue \d exceeds the limit. + * The divergence occurs when the residue \b exceeds the limit. * * \param divergenceResidue the residue limit of the divergence. */ @@ -196,7 +200,7 @@ class IterativeSolver bool nextIteration(); /** - * \brief Checks if the solver is alowed to the next iteration. + * \brief Checks if the solver is allowed to the next iteration. * * \return true \e true if the solver is allowed to do the next iteration. * \return \e false if the solver is \b not allowed to do the next iteration. This may -- GitLab