Run spell check over solution

This commit is contained in:
RoosterDragon
2021-12-05 16:22:22 +00:00
committed by reaperrr
parent b3d290edd9
commit 727084c5fc
31 changed files with 34 additions and 34 deletions

View File

@@ -133,7 +133,7 @@ namespace OpenRA.Mods.Common.Activities
var isLanded = dat <= aircraft.LandAltitude;
// HACK: Prevent paused (for example, EMP'd) aircraft from taking off.
// This is necessary until the TODOs in the IsCanceling block below are adressed.
// This is necessary until the TODOs in the IsCanceling block below are addressed.
if (isLanded && aircraft.IsTraitPaused)
return false;
@@ -236,7 +236,7 @@ namespace OpenRA.Mods.Common.Activities
if (!isSlider)
{
// Using the turn rate, compute a hypothetical circle traced by a continuous turn.
// If it contains the destination point, it's unreachable without more complex manuvering.
// If it contains the destination point, it's unreachable without more complex maneuvering.
var turnRadius = CalculateTurnRadius(aircraft.MovementSpeed, aircraft.TurnSpeed);
// The current facing is a tangent of the minimal turn circle.