From 2bfd09b17300c5b93dd4cf98530f09325f1862e9 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Sun, 22 Jan 2023 21:56:49 -0500 Subject: [PATCH] LibGfx: Fix typo in an error message in TextTagData::from_bytes() --- Userland/Libraries/LibGfx/ICCProfile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)