Skip to content
Snippets Groups Projects
Commit 2e4a52c3 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Fixing typos.

parent aeff4024
No related branches found
No related tags found
1 merge request!116Documentation for linear solvers and preconditioners
...@@ -17,7 +17,11 @@ ...@@ -17,7 +17,11 @@
#include <TNL/Solvers/IterativeSolverMonitor.h> #include <TNL/Solvers/IterativeSolverMonitor.h>
namespace TNL { namespace TNL {
namespace Solvers {
/**
* \brief Namespace for solvers.
*/
namespace Solvers {
/** /**
* \brief Base class for iterative solvers. * \brief Base class for iterative solvers.
...@@ -135,7 +139,7 @@ class IterativeSolver ...@@ -135,7 +139,7 @@ class IterativeSolver
/** /**
* \brief Sets the residue limit for the divergence criterion. * \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. * \param divergenceResidue the residue limit of the divergence.
*/ */
...@@ -196,7 +200,7 @@ class IterativeSolver ...@@ -196,7 +200,7 @@ class IterativeSolver
bool nextIteration(); 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 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 * \return \e false if the solver is \b not allowed to do the next iteration. This may
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment