aboutsummaryrefslogtreecommitdiffstats
path: root/src/java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java')
-rw-r--r--src/java/org/apache/poi/sl/draw/DrawPaint.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/apache/poi/sl/draw/DrawPaint.java b/src/java/org/apache/poi/sl/draw/DrawPaint.java
index 25dbe68d74..4bfbe43004 100644
--- a/src/java/org/apache/poi/sl/draw/DrawPaint.java
+++ b/src/java/org/apache/poi/sl/draw/DrawPaint.java
@@ -382,7 +382,7 @@ public class DrawPaint {
* @param l Luminance is specified as a percentage in the range 1 - 100.
* @param alpha the alpha value between 0 - 1
*
- * @returns the RGB Color object
+ * @return the RGB Color object
*/
public static Color HSL2RGB(double h, double s, double l, double alpha) {
// we clamp the values, as it possible to come up with more than 100% sat/lum
@@ -521,4 +521,4 @@ public class DrawPaint {
return (float)(1.055d * Math.pow(linRGB / 100000d, 1.0d/2.4d) - 0.055d);
}
}
-} \ No newline at end of file
+}