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 5]

Fix various typos

Fixed via `codespell v2.1.dev
This commit is contained in:
luz paz
2020-12-21 11:48:18 +03:00
committed by bugmaster
parent 3b1129a546
commit b81b237fa4
165 changed files with 413 additions and 455 deletions

View File

@@ -227,7 +227,7 @@ static Standard_Integer draft (Draw_Interpretor& di,
if (Inside==1) KeepInside = Standard_False;
MkDraft.Perform(Surf, KeepInside);
}
else { // by Lenght
else { // by Length
Standard_Real L = Draw::Atof(a[7]);
if (L > 1.e-7) {
MkDraft.Perform(L);

View File

@@ -271,7 +271,7 @@ Standard_Integer evolved(Draw_Interpretor& di, Standard_Integer n, const char**
di << " Make evolved profile on spine.\n";
di << " -solid means make closed solid.\n";
di << " -v means use alternative algorithm (volume mode).\n";
di << " -a means referencial CS is automatically computed, otherwise global CS is used. \n";
di << " -a means referential CS is automatically computed, otherwise global CS is used. \n";
di << " -t sets the tolerance.\n";
di << " -parallel turns on parallel execution.\n";
return 0;
@@ -760,12 +760,12 @@ static Standard_Integer buildsweep(Draw_Interpretor& di,
{
if (n == 1) {
di << "build sweep result [-M/-C/-R] [-S] [tol] : options are\n";
di << " -M : Discontinuities are treated by Modfication of\n";
di << " -M : Discontinuities are treated by Modification of\n";
di << " the sweeping mode : it is the default\n";
di << " -C : Discontinuities are treated like Right Corner\n";
di << " Treatement is Extent && Intersect\n";
di << " Treatment is Extent && Intersect\n";
di << " -R : Discontinuities are treated like Round Corner\n";
di << " Treatement is Intersect and Fill\n";
di << " Treatment is Intersect and Fill\n";
di << " -S : To build a Solid\n";
return 0;
}