Skip to content
Snippets Groups Projects
Commit d37d0de2 authored by Oliver Sander's avatar Oliver Sander
Browse files

[bugfix,documentation] Fix some spelling errors

parent 593bec13
No related branches found
No related tags found
No related merge requests found
......@@ -234,7 +234,7 @@ namespace Dune {
Caller::defaults(UMF_Control);
}
/** @brief try loading a decomposition from file and do a decomposition if unsuccesful
/** @brief try loading a decomposition from file and do a decomposition if unsuccessful
* @param mat_ the matrix to decompose when no decoposition file found
* @param file the decomposition file
* @param verbose the verbosity level
......@@ -260,14 +260,14 @@ namespace Dune {
else
{
mat_is_loaded = true;
std::cout << "UMFPack decomposition succesfully loaded from " << file << std::endl;
std::cout << "UMFPack decomposition successfully loaded from " << file << std::endl;
}
}
/** @brief try loading a decomposition from file
* @param file the decomposition file
* @param verbose the verbosity level
* throws an exception when not being able to load the file. Doesnt need knowledge of the
* @throws Dune::Exception When not being able to load the file. Does not need knowledge of the
* actual matrix!
*/
UMFPack(const char* file, int verbose=0)
......@@ -282,7 +282,7 @@ namespace Dune {
if (errcode == UMFPACK_ERROR_file_IO)
DUNE_THROW(Dune::Exception, "IO error while loading UMFPack decomposition");
mat_is_loaded = true;
std::cout << "UMFPack decomposition succesfully loaded from " << file << std::endl;
std::cout << "UMFPack decomposition successfully loaded from " << file << std::endl;
setVerbosity(verbose);
}
......@@ -293,7 +293,7 @@ namespace Dune {
}
/**
* \copydoc InverseOperator::apply(X&, Y&, InverserOperatorResult&)
* \copydoc InverseOperator::apply(X&, Y&, InverseOperatorResult&)
*/
virtual void apply(domain_type& x, range_type& b, InverseOperatorResult& res)
{
......
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