From db8b2e69ddc5866eec127369686329fe36952883 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Fri, 27 Jan 2023 11:12:10 +0000 Subject: [PATCH] Fix `slice.reverse` --- core/slice/slice.odin | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/slice/slice.odin b/core/slice/slice.odin index 595ec8e37..84da242e2 100644 --- a/core/slice/slice.odin +++ b/core/slice/slice.odin @@ -77,8 +77,7 @@ swap_between :: proc(a, b: $T/[]$E) { reverse :: proc(array: $T/[]$E) { n := len(array)/2 for i in 0..