1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +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

@@ -68,7 +68,7 @@ Standard_Boolean XmlTObjDrivers_XYZDriver::Paste
{
const XmlObjMgt_Element& anElement = Source;
// get co-ordinates
// get coordinates
TCollection_AsciiString CoordX = anElement.getAttribute(::CoordX());
TCollection_AsciiString CoordY = anElement.getAttribute(::CoordY());
TCollection_AsciiString CoordZ = anElement.getAttribute(::CoordZ());
@@ -120,15 +120,15 @@ void XmlTObjDrivers_XYZDriver::Paste
TCollection_AsciiString aCoord;
// co-ordinate X
// coordinate X
aCoord = TCollection_AsciiString( aXYZ.X() );
Target.Element().setAttribute(::CoordX(), aCoord.ToCString());
// co-ordinate Y
// coordinate Y
aCoord = TCollection_AsciiString( aXYZ.Y() );
Target.Element().setAttribute(::CoordY(), aCoord.ToCString());
// co-ordinate Z
// coordinate Z
aCoord = TCollection_AsciiString( aXYZ.Z() );
Target.Element().setAttribute(::CoordZ(), aCoord.ToCString());
}