From 255cd7f7f6db28d205b4924fd27ea72f78880f44 Mon Sep 17 00:00:00 2001 From: Rangi Date: Fri, 10 Jul 2026 14:29:32 -0400 Subject: [PATCH] Fix a typo in a comment --- src/gfx/pal_packing.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gfx/pal_packing.cpp b/src/gfx/pal_packing.cpp index 06257f6d..2058476e 100644 --- a/src/gfx/pal_packing.cpp +++ b/src/gfx/pal_packing.cpp @@ -294,8 +294,7 @@ static void decant(std::vector &assignments, std::vector // properties // NB: this does mean that the first step might get empty palettes as its input! // NB: this is safe to do because we go towards the beginning of the vector, thereby not - // invalidating our iteration (thus, iterators should not be used to drivethe outer - // loop) + // invalidating our iteration (so iterators should not be used to drive the outer loop) if (assignments[from].empty()) { assignments.erase(assignments.begin() + from); }