]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/color.el (color-oklab-to-xyz): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Sun, 19 May 2024 08:23:19 +0000 (11:23 +0300)
committerEshel Yaron <me@eshelyaron.com>
Thu, 23 May 2024 07:42:16 +0000 (09:42 +0200)
(cherry picked from commit dbd50ccd8e0f32054944f3016323f8e847ad167b)

lisp/color.el

index 5ba73f4a879328eafa4ba1ea0dbcec5781ed53dd..79dced4e3d7da8565ac193a3b22d79918292fd09 100644 (file)
@@ -372,7 +372,7 @@ returned by `color-srgb-to-lab' or `color-xyz-to-lab'."
 (defun color-oklab-to-xyz (l a b)
   "Convert the OkLab color represented by L A B to CIE XYZ.
 Oklab is a perceptual color space created by Björn Ottosson
-<https://bottosson.github.io/posts/oklab/>. It has the property that
+<https://bottosson.github.io/posts/oklab/>.  It has the property that
 changes in the hue and saturation of a color can be made while maintaining
 the same perceived lightness."
   (let ((ll (expt (+ (* 1.0 l) (* 0.39633779 a) (* 0.21580376 b)) 3))