From d6ff98373dc5b6b08549b40a0d5e420350deaaa2 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 15:32:51 -0500 Subject: [PATCH] spelling: quadrant Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/libutil/trig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libutil/trig.c b/src/libutil/trig.c index 5f7cfd94..cfab8c1b 100644 --- a/src/libutil/trig.c +++ b/src/libutil/trig.c @@ -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;