diff --git a/Userland/Libraries/LibGfx/ICCProfile.cpp b/Userland/Libraries/LibGfx/ICCProfile.cpp index 3e6674fb96..d42e6f6be4 100644 --- a/Userland/Libraries/LibGfx/ICCProfile.cpp +++ b/Userland/Libraries/LibGfx/ICCProfile.cpp @@ -769,7 +769,7 @@ ErrorOr> TextTagData::from_bytes(ReadonlyBytes bytes, u8 const* text_data = bytes.data() + 8; for (u32 i = 0; i < length; ++i) { if (text_data[i] >= 128) - return Error::from_string_literal("ICC::Profile: textType data not 7-byte ASCII"); + return Error::from_string_literal("ICC::Profile: textType data not 7-bit ASCII"); } if (length == 0)