From 3bed4c9091e5fef0a7b31b6100f5a0a728427088 Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@dune-project.org>
Date: Fri, 20 Jun 2008 07:29:48 +0000
Subject: [PATCH] spelling

[[Imported from SVN: r5222]]
---
 common/exprtmpl.hh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/exprtmpl.hh b/common/exprtmpl.hh
index 663afb9d4..79acef0c1 100644
--- a/common/exprtmpl.hh
+++ b/common/exprtmpl.hh
@@ -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++)
-- 
GitLab