From f41b57f1cc35cd2e35c73863f1134677a7320c10 Mon Sep 17 00:00:00 2001 From: TheRadischen <119001853+TheRadischen@users.noreply.github.com> Date: Fri, 12 Jun 2026 21:48:41 +0200 Subject: [PATCH] fixed type in slice.rotate sry bll, i swear im never programming tired again --- core/slice/slice.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/slice/slice.odin b/core/slice/slice.odin index 464a30339..8485af145 100644 --- a/core/slice/slice.odin +++ b/core/slice/slice.odin @@ -433,7 +433,7 @@ fill :: proc "contextless" (array: $T/[]$E, value: E) #no_bounds_check { } rotate_left :: proc "contextless" (array: $T/[]$E, mid: int) { - if len(a) == 0 { + if len(array) == 0 { return } n := len(array)