From c5aae967547de63e9c5ea7c382c9966138dd6e44 Mon Sep 17 00:00:00 2001 From: MoonsvnLyn <287222957+FirmaSpring@users.noreply.github.com> Date: Mon, 17 Aug 2026 17:30:27 +0800 Subject: [PATCH] docs: fix RapidTables HSL conversion reference URL ## Problem The HSL conversion test cites RapidTables without a file extension: http://www.rapidtables.com/convert/color/hsl-to-rgb GET with redirects returns 404. The live page is `/hsl-to-rgb.html`. ## Solution Update the `see` href to the current RapidTables URL. ## Verification ``` curl -sL -o /dev/null -w "%{http_code} %{url_effective}" -A "Mozilla/5.0" \ "http://www.rapidtables.com/convert/color/hsl-to-rgb" # 404 https://www.rapidtables.com/convert/color/hsl-to-rgb curl -sL -o /dev/null -w "%{http_code} %{url_effective}" -A "Mozilla/5.0" \ "https://www.rapidtables.com/convert/color/hsl-to-rgb.html" # 200 https://www.rapidtables.com/convert/color/hsl-to-rgb.html ``` Co-authored-by: FirmamentalSpring <287222957+FirmaSpring@users.noreply.github.com> --- tests/ImageSharp.Tests/ColorProfiles/RgbAndHslConversionTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ImageSharp.Tests/ColorProfiles/RgbAndHslConversionTest.cs b/tests/ImageSharp.Tests/ColorProfiles/RgbAndHslConversionTest.cs index e5874c3d13..7ec72a36e7 100644 --- a/tests/ImageSharp.Tests/ColorProfiles/RgbAndHslConversionTest.cs +++ b/tests/ImageSharp.Tests/ColorProfiles/RgbAndHslConversionTest.cs @@ -11,7 +11,7 @@ namespace SixLabors.ImageSharp.Tests.ColorProfiles; /// /// Test data generated using: /// -/// +/// /// [Trait("Color", "Conversion")] public class RgbAndHslConversionTest