Spell check all Code (#5228)

* Spelling Fixes

* More Spelling Errors

* More Spelling Checks

* fixed wording

* Undo mesh\generated changes

* Missed one file on readd

* missed second file
This commit is contained in:
Technologyman00
2024-11-02 20:25:05 -05:00
committed by GitHub
parent 93bc61c855
commit bee474ee54
20 changed files with 27 additions and 27 deletions

View File

@@ -1,8 +1,8 @@
#include "UnitConversions.h"
float UnitConversions::CelsiusToFahrenheit(float celcius)
float UnitConversions::CelsiusToFahrenheit(float celsius)
{
return (celcius * 9) / 5 + 32;
return (celsius * 9) / 5 + 32;
}
float UnitConversions::MetersPerSecondToKnots(float metersPerSecond)