From 6428577398a1cbf8a87a131527005ee7d27c7092 Mon Sep 17 00:00:00 2001
From: Christian Engwer <christi@dune-project.org>
Date: Fri, 26 Nov 2010 22:32:22 +0000
Subject: [PATCH] fix several typos

[[Imported from SVN: r1405]]
---
 dune/istl/multitypeblockvector.hh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dune/istl/multitypeblockvector.hh b/dune/istl/multitypeblockvector.hh
index bb27987ae..57288b072 100644
--- a/dune/istl/multitypeblockvector.hh
+++ b/dune/istl/multitypeblockvector.hh
@@ -210,7 +210,7 @@ namespace Dune {
   class MultiTypeBlockVector_Norm {
   public:
     /** @brief real type of T. */
-    typedef typename typename FieldTraits<typname T::field_type>::real_type
+    typedef typename FieldTraits<typename T::field_type>::real_type
     real_type;
 
     /**
@@ -224,7 +224,7 @@ namespace Dune {
   class MultiTypeBlockVector_Norm<0,T> {
   public:
     /** @brief real type of T. */
-    typedef typename typename FieldTraits<typname T::field_type>::real_type
+    typedef typename FieldTraits<typename T::field_type>::real_type
     real_type;
     static real_type result (const T& a) {return 0.0;}
   };
@@ -276,7 +276,7 @@ namespace Dune {
 
     field_type operator* (const type& newv) const {return MultiTypeBlockVector_Mul<mpl::size<type>::value,type>::mul(*this,newv);}
 
-    typedef typename FieldTraits<field_type>::real_type realtype;
+    typedef typename FieldTraits<field_type>::real_type real_type;
 
     /**
      * two-norm^2
-- 
GitLab