summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2023-01-03 18:24:21 +0100
committerLinus Groh <mail@linusgroh.de>2023-01-03 18:53:20 +0100
commitb9913f94418e95631b6d67ef959f328969a5758f (patch)
tree3bfd881611a3b65e0f44f230b65ec74d8ad4782d /Userland
parentfb2be937ac0fb34b04733f26cd8494e1569669ee (diff)
downloadserenity-b9913f94418e95631b6d67ef959f328969a5758f.zip
LibGfx: Fix typos in ICC spec comments
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Libraries/LibGfx/ICCProfile.cpp4
1 files 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<XYZ> parse_pcs_illuminant(ICCHeader const& header)
ErrorOr<time_t> 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<void> 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 {};