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

Merge branch 'cleanup/typos' into 'master'

[cleanup] fix some typos in documentation strings and an error message



See merge request !17
parents f4c58ebd e414213b
No related branches found
No related tags found
1 merge request!17[cleanup] fix some typos in documentation strings and an error message
......@@ -111,7 +111,7 @@ struct Lambda_hybridMultiIndexAccess
/**
* \brief Provide multi-index acces by chaining operator[]
* \brief Provide multi-index access by chaining operator[]
*
* \ingroup Utility
*
......
......@@ -96,7 +96,7 @@ protected:
// Since we can generate the node data type only if
// we know the type of the node, we have to do
// intialization, copy, and destruction via a
// initialization, copy, and destruction via a
// tree traversal. Once we can use C++14 this can
// be written in a much easier and more selfcontained
// ways using generic lambda functions.
......
......@@ -18,7 +18,7 @@ namespace Functions {
*
* Helper typedef to remove constructor with forwarding reference from
* overload set for type is not constructible from argument list.
* This is usefull to avoid failng forwarding constructors
* This is useful to avoid failng forwarding constructors
* for base classes or members.
*/
template<class T, class... Args>
......
......@@ -62,7 +62,7 @@ namespace Imp {
/**
* \brief A wrapper providing multiindex acces to vector entries
* \brief A wrapper providing multiindex access to vector entries
*
* The coefficient type should be a type such that the coefficients
* entries for each global basis function can be cast to this type.
......
......@@ -82,7 +82,7 @@ void testScalarBasis(const Basis& feBasis,
double sum = std::accumulate(values.begin(), values.end(), 0.0);
if (std::abs(sum-1.0) > 1e-5)
DUNE_THROW(Exception, "Basis is no partition of unity, even though it is supposed to be! Error occured for geometry type: " << e.type());
DUNE_THROW(Exception, "Basis is no partition of unity, even though it is supposed to be! Error occurred for geometry type: " << e.type());
}
}
}
......
......@@ -69,7 +69,7 @@ public:
return gv_.template begin<codim>();
}
//! Create a end iterator
//! Create an end iterator
const_iterator end() const
{
return gv_.template end<codim>();
......
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