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

Small fixes and typo fix in documentation of solver monitor.

parent 59a4d824
No related branches found
No related tags found
1 merge request!116Documentation for linear solvers and preconditioners
......@@ -163,7 +163,6 @@ class LinearSolver
MatrixPointer matrix = nullptr;
PreconditionerPointer preconditioner = nullptr;
};
} // namespace Linear
} // namespace Solvers
} // namespace TNL
......@@ -93,7 +93,7 @@ class SolverMonitor
}
/**
* \brief Stops the main loop of the monitor. See \ref SolverMonitor::runMainLoop.
* \brief Stops the main loop of the monitor. See \ref TNL::SolverMonitor::runMainLoop.
*/
void stopMainLoop() { stopped = true; }
......@@ -101,7 +101,7 @@ class SolverMonitor
* \brief Checks whether the main loop was stopped.
*
* \return true if the main loop was stopped.
* \return false if the mian loop was not stopped yet.
* \return false if the main loop was not stopped yet.
*/
bool isStopped() const { return stopped; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment