Doxygen Typos

+ doxy whitespace formatting
+ added more misc. typos
+ grammar fixes
[skip ci]
This commit is contained in:
Unknown
2017-10-15 09:33:05 -04:00
committed by wmayer
parent 9adddc08ac
commit 31a32b9931
12 changed files with 49 additions and 49 deletions

View File

@@ -207,7 +207,7 @@ bool MeshInput::LoadFormat(std::istream &str, MeshIO::Format fmt)
case MeshIO::NAS:
return LoadNastran(str);
default:
throw Base::FileException("Not supported file format");
throw Base::FileException("Unsupported file format");
}
}
@@ -1774,7 +1774,7 @@ bool MeshOutput::SaveFormat(std::ostream &str, MeshIO::Format fmt) const
case MeshIO::PY:
return SavePython(str);
default:
throw Base::FileException("Not supported file format");
throw Base::FileException("Unsupported file format");
}
}