[Sketcher] Fix Typo in comment

threated -> treated
This commit is contained in:
Ajinkya Dahale
2022-09-14 01:14:12 -04:00
committed by Chris Hennes
parent e7ebe2a053
commit 1b2ffdc5f6

View File

@@ -8311,7 +8311,7 @@ bool SketchObject::AutoLockTangencyAndPerpty(Constraint *cstr, bool bForce, bool
if(fabs(angleErr) > M_PI/2 )
angleDesire += M_PI;
cstr->setValue(angleDesire + angleOffset); //external tangency. The angle stored is offset by Pi/2 so that a value of 0.0 is invalid and threated as "undecided".
cstr->setValue(angleDesire + angleOffset); //external tangency. The angle stored is offset by Pi/2 so that a value of 0.0 is invalid and treated as "undecided".
}
}
} catch (Base::Exception& e){