From d37d0de2781f9a8b4dcd7b5eaf6e20bf79fcf174 Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Wed, 4 Dec 2013 15:13:07 +0100 Subject: [PATCH] [bugfix,documentation] Fix some spelling errors --- dune/istl/umfpack.hh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dune/istl/umfpack.hh b/dune/istl/umfpack.hh index 0a920736..0919dbf3 100644 --- a/dune/istl/umfpack.hh +++ b/dune/istl/umfpack.hh @@ -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) { -- GitLab