From 1d94518492ff474516cd344ff3e6956a86ae9d8e Mon Sep 17 00:00:00 2001 From: Coranath <34037243+Coranath@users.noreply.github.com> Date: Mon, 24 Aug 2026 21:54:32 -0700 Subject: [PATCH 1/2] Fixed typo in raylib.odin Fixed typo on line 666 (!?) from "fordward" to "forward" --- vendor/raylib/raylib.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/raylib/raylib.odin b/vendor/raylib/raylib.odin index 01235b6ec..64321e020 100644 --- a/vendor/raylib/raylib.odin +++ b/vendor/raylib/raylib.odin @@ -663,7 +663,7 @@ MouseButton :: enum c.int { MIDDLE = 2, // Mouse button middle (pressed wheel) SIDE = 3, // Mouse button side (advanced mouse device) EXTRA = 4, // Mouse button extra (advanced mouse device) - FORWARD = 5, // Mouse button fordward (advanced mouse device) + FORWARD = 5, // Mouse button forward (advanced mouse device) BACK = 6, // Mouse button back (advanced mouse device) } From 3da4bb91cd69cc8af6977c7e68c41bc723681e39 Mon Sep 17 00:00:00 2001 From: Coranath <34037243+Coranath@users.noreply.github.com> Date: Mon, 24 Aug 2026 22:46:30 -0700 Subject: [PATCH 2/2] Fixed type in math/rand.odin Fixed typo on line 564, from "inclusice" to "inclusive" --- core/math/rand/rand.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/math/rand/rand.odin b/core/math/rand/rand.odin index bb3dc7556..141cbe9fa 100644 --- a/core/math/rand/rand.odin +++ b/core/math/rand/rand.odin @@ -561,7 +561,7 @@ uint_max :: proc(n: uint, gen := context.random_generator) -> (val: uint) { Generates a random unsigned 32 bit value in the range `[lo, hi)` using the provided random number generator. If no generator is provided the global random number generator will be used. Inputs: -- lo: The lower bound of the generated number, this value is inclusice +- lo: The lower bound of the generated number, this value is inclusive - hi: The upper bound of the generated number, this value is exclusive Returns: