diff options
| author | Mark Oteiza | 2020-02-14 18:01:11 -0500 |
|---|---|---|
| committer | Mark Oteiza | 2020-02-14 18:01:11 -0500 |
| commit | 3843721c6e7f81197a16aaf8937ae9229e5dc0f2 (patch) | |
| tree | 40d60f0fafce9b9bf8849bc3b9fb00fe858d533f /src | |
| parent | 333cc6a037e3b3300ba69ea361de1f8233c50b48 (diff) | |
| download | emacs-3843721c6e7f81197a16aaf8937ae9229e5dc0f2.tar.gz emacs-3843721c6e7f81197a16aaf8937ae9229e5dc0f2.zip | |
Fix typos
* src/lcms.c (lcms-xyz->jch, lcms-jch->xyz): Swap first line of docstrings.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lcms.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lcms.c b/src/lcms.c index a74c5539860..c19397f4baa 100644 --- a/src/lcms.c +++ b/src/lcms.c | |||
| @@ -317,7 +317,7 @@ jab_to_jch (const lcmsJab_t *jab, cmsJCh *jch, double FL, double c1, double c2) | |||
| 317 | } | 317 | } |
| 318 | 318 | ||
| 319 | DEFUN ("lcms-xyz->jch", Flcms_xyz_to_jch, Slcms_xyz_to_jch, 1, 3, 0, | 319 | DEFUN ("lcms-xyz->jch", Flcms_xyz_to_jch, Slcms_xyz_to_jch, 1, 3, 0, |
| 320 | doc: /* Convert CIE CAM02 JCh to CIE XYZ. | 320 | doc: /* Convert CIE XYZ to CIE CAM02 JCh. |
| 321 | COLOR is a list (X Y Z), with Y scaled about unity. | 321 | COLOR is a list (X Y Z), with Y scaled about unity. |
| 322 | Optional arguments WHITEPOINT and VIEW are the same as in `lcms-cam02-ucs', | 322 | Optional arguments WHITEPOINT and VIEW are the same as in `lcms-cam02-ucs', |
| 323 | which see. */) | 323 | which see. */) |
| @@ -353,7 +353,7 @@ which see. */) | |||
| 353 | } | 353 | } |
| 354 | 354 | ||
| 355 | DEFUN ("lcms-jch->xyz", Flcms_jch_to_xyz, Slcms_jch_to_xyz, 1, 3, 0, | 355 | DEFUN ("lcms-jch->xyz", Flcms_jch_to_xyz, Slcms_jch_to_xyz, 1, 3, 0, |
| 356 | doc: /* Convert CIE XYZ to CIE CAM02 JCh. | 356 | doc: /* Convert CIE CAM02 JCh to CIE XYZ. |
| 357 | COLOR is a list (J C h), where lightness of white is equal to 100, and hue | 357 | COLOR is a list (J C h), where lightness of white is equal to 100, and hue |
| 358 | is given in degrees. | 358 | is given in degrees. |
| 359 | Optional arguments WHITEPOINT and VIEW are the same as in `lcms-cam02-ucs', | 359 | Optional arguments WHITEPOINT and VIEW are the same as in `lcms-cam02-ucs', |