From b9913f94418e95631b6d67ef959f328969a5758f Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Tue, 3 Jan 2023 18:24:21 +0100 Subject: [PATCH] LibGfx: Fix typos in ICC spec comments --- Userland/Libraries/LibGfx/ICCProfile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Libraries/LibGfx/ICCProfile.cpp b/Userland/Libraries/LibGfx/ICCProfile.cpp index e7d49a1e37..f7711ce33e 100644 --- a/Userland/Libraries/LibGfx/ICCProfile.cpp +++ b/Userland/Libraries/LibGfx/ICCProfile.cpp @@ -222,13 +222,13 @@ ErrorOr parse_pcs_illuminant(ICCHeader const& header) ErrorOr parse_creation_date_time(ICCHeader const& header) { - // iCC v4, 7.2.8 Date and time field + // ICC v4, 7.2.8 Date and time field return parse_date_time_number(header.profile_creation_time); } ErrorOr parse_file_signature(ICCHeader const& header) { - // iCC v4, 7.2.9 Profile file signature field + // ICC v4, 7.2.9 Profile file signature field if (header.profile_file_signature != 0x61637370) return Error::from_string_literal("ICC::Profile: profile file signature not 'acsp'"); return {};