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

spelling

[[Imported from SVN: r5222]]
parent ea5da545
No related branches found
No related tags found
No related merge requests found
......@@ -1082,7 +1082,7 @@ namespace Dune {
operator * (const Vector<A> & a, const Expression<B> & b)
{
dune_static_assert((is_same<FieldType<A>,FieldType<B> >::value),
"Field types of both oprands must match!");
"Field types of both operands must match!");
assert(a.N() == b.N());
typename FieldType<A>::type x = 0;
for (size_t i=0; i<a.N(); i++)
......@@ -1096,7 +1096,7 @@ namespace Dune {
operator * (const Expression<A> & a, const Vector<B> & b)
{
dune_static_assert((is_same<FieldType<A>,FieldType<B> >::value),
"Field types of both oprands must match!");
"Field types of both operands must match!");
assert(a.N() == b.N());
typename FieldType<A>::type x = 0;
for (size_t i=0; i<a.N(); i++)
......
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