From 07e73d756ee1056eac461fd17302d654d92c0823 Mon Sep 17 00:00:00 2001 From: Robin Date: Mon, 11 Aug 2025 11:21:56 +0200 Subject: [PATCH] Add missing "the" for cmyk function of color docs (#6731) --- crates/typst-library/src/visualize/color.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/typst-library/src/visualize/color.rs b/crates/typst-library/src/visualize/color.rs index e57e74734..710e407c9 100644 --- a/crates/typst-library/src/visualize/color.rs +++ b/crates/typst-library/src/visualize/color.rs @@ -60,7 +60,7 @@ static TO_SRGB: LazyLock = LazyLock::new(|| { /// /// Typst supports: /// - sRGB through the [`rgb` function]($color.rgb) -/// - Device CMYK through [`cmyk` function]($color.cmyk) +/// - Device CMYK through the [`cmyk` function]($color.cmyk) /// - D65 Gray through the [`luma` function]($color.luma) /// - Oklab through the [`oklab` function]($color.oklab) /// - Oklch through the [`oklch` function]($color.oklch)