From 834b7cf3eb28fa094e901bce02704c135827214d Mon Sep 17 00:00:00 2001 From: David Holland Date: Sat, 4 Jul 2026 14:45:43 +1000 Subject: [PATCH] fix queue consume_front doc comment --- core/container/queue/queue.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/container/queue/queue.odin b/core/container/queue/queue.odin index 6790e825a..4b371f378 100644 --- a/core/container/queue/queue.odin +++ b/core/container/queue/queue.odin @@ -406,7 +406,7 @@ push_back_elems :: proc(q: ^$Q/Queue($T), elems: ..T, loc := #caller_location) - } /* -Consume `n` elements from the back of the queue. +Consume `n` elements from the front of the queue. This will raise a bounds checking error if the queue does not have enough elements. */