Skip to content
Snippets Groups Projects
Commit 000d6fe1 authored by Adrien Crovato's avatar Adrien Crovato
Browse files

fix typos

parent 5a361d0b
No related branches found
No related tags found
1 merge request!50Feature eigen
Pipeline #719 passed
......@@ -221,7 +221,7 @@ bool Newton::run()
// Check the solution
if (relRes < relTol || absRes < absTol)
{
std::cout << ANSI_COLOR_GREEN << "Newton sovler converged!" << ANSI_COLOR_RESET << std::endl
std::cout << ANSI_COLOR_GREEN << "Newton solver converged!" << ANSI_COLOR_RESET << std::endl
<< std::endl;
return true;
}
......
......@@ -123,7 +123,7 @@ void MshDeform::initialize()
{
// Sanity checks
if (!field)
throw std::runtime_error("MshDeform: field has not been found! Use setField() to ass a field.\n");
throw std::runtime_error("MshDeform: field has not been found! Use setField() to add a field.\n");
else if (!fixed)
throw std::runtime_error("MshDeform: fixed boundaries have not been found! Use addFixed() to add at least one boundary.\n");
else if (!moving)
......
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