LibGfx: Fix comment typo in ICC code

This commit is contained in:
Nico Weber 2023-02-05 18:18:03 -05:00 committed by Sam Atkins
parent 85feab4095
commit 5ccfd0e49d
Notes: sideshowbarker 2024-07-17 00:44:54 +09:00

View File

@ -189,7 +189,7 @@ ErrorOr<NonnullRefPtr<MultiLocalizedUnicodeTagData>> 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))