Misc. typos

Found via `codespell`
Trivial typos

Found via `codespell`
This commit is contained in:
luz.paz
2018-08-09 14:43:09 -04:00
committed by wmayer
parent a6341b3f27
commit fab9cad50f
11 changed files with 20 additions and 20 deletions

View File

@@ -117,7 +117,7 @@ public:
*/
virtual void SaveDocFile (Writer &/*writer*/) const;
/** This method is used to restore large amounts of data from a file
* In this method you simply stream in your with SaveDocFile() saved data.
* In this method you simply stream in your SaveDocFile() saved data.
* Again you have to apply for the call of this method in the Restore() call:
* \code
* void PropertyMeshKernel::Restore(Base::XMLReader &reader)
@@ -131,7 +131,7 @@ public:
* MeshCore::MeshDocXML restorer(*_pcMesh);
* restorer.Restore(reader);
* }else{
* // initate a file read
* // initiate a file read
* reader.addFile(file.c_str(),this);
* }
* }