From 5ccfd0e49d2884a8896d4d8c66a2c98e446205c1 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Sun, 5 Feb 2023 18:18:03 -0500 Subject: [PATCH] LibGfx: Fix comment typo in ICC code --- Userland/Libraries/LibGfx/ICC/TagTypes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibGfx/ICC/TagTypes.cpp b/Userland/Libraries/LibGfx/ICC/TagTypes.cpp index aa73e992ed8..07211c2f3ec 100644 --- a/Userland/Libraries/LibGfx/ICC/TagTypes.cpp +++ b/Userland/Libraries/LibGfx/ICC/TagTypes.cpp @@ -189,7 +189,7 @@ ErrorOr> MultiLocalizedUnicodeTagDat // "Multiple strings within this tag may share storage locations. For example, en/US and en/UK can refer to the // same string data." - // This implementation makes redudant string copies in that case. + // This implementation makes redundant string copies in that case. // Most of the time, this costs just a few bytes, so that seems ok. if (bytes.size() < 4 * sizeof(u32))