1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-08 14:17:06 +03:00

0031939: Coding - correction of spelling errors in comments [part 8]

Fix various typos

Fixed via codespell v2.1.dev
This commit is contained in:
luz paz
2021-02-01 12:52:47 +03:00
committed by bugmaster
parent 8df3104cd2
commit 4551e1be75
110 changed files with 219 additions and 225 deletions

View File

@@ -273,7 +273,7 @@ Standard_Boolean XmlLDrivers_DocumentStorageDriver::WriteToDomDocument
TDocStd_FormatVersion aFormatVersion = TDocStd_Document::CurrentStorageFormatVersion(); // the last version of the format
if (TDocStd_Document::CurrentStorageFormatVersion() < aDoc->StorageFormatVersion())
{
TCollection_ExtendedString anErrorString("Unacceptable storage format version, the last verson is used");
TCollection_ExtendedString anErrorString("Unacceptable storage format version, the last version is used");
aMessageDriver->Send (anErrorString.ToExtString(), Message_Warning);
}
else
@@ -299,7 +299,7 @@ Standard_Boolean XmlLDrivers_DocumentStorageDriver::WriteToDomDocument
for(i = 1; i <= aRefs.Length(); i++)
aUserInfo.Append(aRefs.Value(i));
// Keep fomat version in Reloc. table
// Keep format version in Reloc. table
Handle(Storage_HeaderData) aHeaderData = theData->HeaderData();
aHeaderData->SetStorageVersion(aFormatVersion);
myRelocTable.Clear();
@@ -406,7 +406,7 @@ Standard_Integer XmlLDrivers_DocumentStorageDriver::MakeDocument
// Retrieve from DOM_Document
XmlMDF::FromTo (aTDF, theElement, myRelocTable, myDrivers, theRange);
#ifdef OCCT_DEBUGXML
aMessage = "First step successfull";
aMessage = "First step successful";
aMessageDriver -> Send (aMessage.ToExtString(), Message_Warning);
#endif
return myRelocTable.Extent();