From ab98ad4e700d2db33ef3d81722c4ff5cd86d6b14 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Fri, 28 Apr 2023 14:23:53 -0400 Subject: [PATCH] ICC: Add a missing " at the end of a comment --- Userland/Libraries/LibGfx/ICC/Profile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibGfx/ICC/Profile.cpp b/Userland/Libraries/LibGfx/ICC/Profile.cpp index a294e2cde5..91d15a0f12 100644 --- a/Userland/Libraries/LibGfx/ICC/Profile.cpp +++ b/Userland/Libraries/LibGfx/ICC/Profile.cpp @@ -744,7 +744,7 @@ ErrorOr Profile::check_required_tags() // [...] Only the PCSXYZ encoding can be used with matrix/TRC models. // 8.3.4 Monochrome Input profiles // In addition to the tags listed in 8.2, a monochrome Input profile shall contain the following tag: - // - grayTRCTag (see 9.2.29). + // - grayTRCTag (see 9.2.29)." bool has_n_component_lut_based_tags = has_tag(AToB0Tag); bool has_three_component_matrix_based_tags = has_all_tags(Array { redMatrixColumnTag, greenMatrixColumnTag, blueMatrixColumnTag, redTRCTag, greenTRCTag, blueTRCTag }); bool has_monochrome_tags = has_tag(grayTRCTag);