mirror of https://github.com/SixLabors/ImageSharp
Browse Source
## 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>pull/3172/head
1 changed files with 1 additions and 1 deletions
Loading…
Reference in new issue