From e08952458aface25a10ac57df32777e847493412 Mon Sep 17 00:00:00 2001 From: Nickyecen Date: Tue, 8 Jul 2025 08:00:19 -0300 Subject: [PATCH] Fix typo on Event Queue Signed-off-by: Nickyecen --- book/event-queue.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/event-queue.markdown b/book/event-queue.markdown index bff627e3..692e4052 100644 --- a/book/event-queue.markdown +++ b/book/event-queue.markdown @@ -507,7 +507,7 @@ If the maximum capacity bugs you, you can use a growable array. When the queue gets full, allocate a new array twice the size of the current array (or some other multiple), then copy the items over. -Even though you copy when they array grows, enqueuing an item still has constant +Even though you copy when the array grows, enqueuing an item still has constant *amortized* complexity.