summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRay <[email protected]>2022-03-28 11:58:25 +0200
committerRay <[email protected]>2022-03-28 11:58:25 +0200
commit3bcb19e040711418a3e387eb6efc1702e663d680 (patch)
tree027eed46f95b861a546eed02a6d087359f625998 /src
parentcfe7823453781214d2a999f06ad4d49b690fe7c7 (diff)
parentc2c1c930418551b41b17817015614b443ebd4f2c (diff)
downloadraylib-3bcb19e040711418a3e387eb6efc1702e663d680.tar.gz
raylib-3bcb19e040711418a3e387eb6efc1702e663d680.zip
Merge branch 'master' of https://github.com/raysan5/raylib
Diffstat (limited to 'src')
-rw-r--r--src/raymath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raymath.h b/src/raymath.h
index 658d69ea..319b7436 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)
*