spelling: quadrant

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 15:32:51 -05:00
parent d56fb48114
commit d6ff98373d

View file

@ -548,7 +548,7 @@ static const uint16_t ATAN_LOOKUP[] = {
int32_t sin_lookup(int32_t angle) {
int32_t mult = 1;
// modify the input angle and output multiplier for use in a first quadrent sine lookup
// modify the input angle and output multiplier for use in a first quadrant sine lookup
if (angle < 0) {
angle = -angle;
mult = -mult;