mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-24 13:50:49 +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:
@@ -239,7 +239,7 @@ void XmlObjMgt::SetTagEntryString (XmlObjMgt_DOMString& theTarget,
|
||||
char * aTargetPtr = aTarget + (sizeof (aRefPrefix) - 1);
|
||||
|
||||
for(;;) {
|
||||
// Check for the end-of-string; find the delimeter ':'
|
||||
// Check for the end-of-string; find the delimiter ':'
|
||||
aPtr = strchr (aTagEntry, ':');
|
||||
if (aPtr == NULL) break;
|
||||
aTagEntry = aPtr + 1;
|
||||
|
@@ -26,10 +26,10 @@
|
||||
#include <XmlObjMgt_DOMString.hxx>
|
||||
|
||||
|
||||
//! The class Array1 represents unidimensionnal
|
||||
//! The class Array1 represents unidimensional
|
||||
//! array of fixed size known at run time.
|
||||
//! The range of the index is user defined.
|
||||
//! Warning: Programs clients of such class must be independant
|
||||
//! Warning: Programs clients of such class must be independent
|
||||
//! of the range of the first element. Then, a C++ for
|
||||
//! loop must be written like this
|
||||
//! for (i = A->Lower(); i <= A->Upper(); i++)
|
||||
|
Reference in New Issue
Block a user