Commit f4d1bb73 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed typos in MatrixType.h

parent 9ece8a67
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -32,8 +32,8 @@ struct MatrixType
         type = "General";
      else
      {
         if( isSymmetric ) type = "Symmetric";
         if( isBinary ) type += "Binary";
         if( isSymmetric() ) type = "Symmetric";
         if( isBinary() ) type += "Binary";
      }
      return type;
   }