summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2023-04-28 14:23:53 -0400
committerAndreas Kling <kling@serenityos.org>2023-04-29 06:49:36 +0200
commitab98ad4e700d2db33ef3d81722c4ff5cd86d6b14 (patch)
treec797e8f22c68de3f7abf39f0e03138957f07795f
parent227072a5afa8db3b8e1e9c400404604d882a392d (diff)
downloadserenity-ab98ad4e700d2db33ef3d81722c4ff5cd86d6b14.zip
ICC: Add a missing " at the end of a comment
-rw-r--r--Userland/Libraries/LibGfx/ICC/Profile.cpp2
1 files changed, 1 insertions, 1 deletions
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<void> 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);