aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/libclut.c4
-rw-r--r--src/libclut.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/libclut.c b/src/libclut.c
index f2efd6b..0a1b2f4 100644
--- a/src/libclut.c
+++ b/src/libclut.c
@@ -213,8 +213,8 @@ void libclut_model_ciexyz_to_cielab(double X, double Y, double Z, double* L, dou
* Convert from CIE L*a*b* to CIE XYZ.
*
* @param L The L* component.
- * @param a The a component.
- * @param b The b component.
+ * @param a The a* component.
+ * @param b The b* component.
* @param X Output parameter for the X parameter.
* @param Y Output parameter for the Y parameter.
* @param Z Output parameter for the Z parameter.
diff --git a/src/libclut.h b/src/libclut.h
index eab4f8e..e2feb50 100644
--- a/src/libclut.h
+++ b/src/libclut.h
@@ -1060,8 +1060,8 @@ void libclut_model_ciexyz_to_cielab(double, double, double, double*, double*, do
* Convert from CIE L*a*b* to CIE XYZ.
*
* @param L The L* component.
- * @param a The a component.
- * @param b The b component.
+ * @param a The a* component.
+ * @param b The b* component.
* @param X Output parameter for the X parameter.
* @param Y Output parameter for the Y parameter.
* @param Z Output parameter for the Z parameter.