mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 01:41:59 -05:00
LibGfx: Fix typos in ICC spec comments
This commit is contained in:
parent
fb2be937ac
commit
b9913f9441
1 changed files with 2 additions and 2 deletions
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue