From c2c1c930418551b41b17817015614b443ebd4f2c Mon Sep 17 00:00:00 2001 From: Ray <raysan5@gmail.com> Date: Sat, 26 Mar 2022 10:42:46 +0100 Subject: [PATCH] Corrected typo --- src/raymath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raymath.h b/src/raymath.h index 166b23dc4..1b76c1b16 100644 --- a/src/raymath.h +++ b/src/raymath.h @@ -18,7 +18,7 @@ * - Functions are always self-contained, no function use another raymath function inside, * required code is directly re-implemented inside * - Functions input parameters are always received by value (2 unavoidable exceptions) -* - Functions use always a "result" anmed variable for return +* - Functions use always a "result" variable for return * - Functions are always defined inline * - Angles are always in radians (DEG2RAD/RAD2DEG macros provided for convenience) *