summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--poi/src/main/java/org/apache/poi/ss/formula/functions/PercentRank.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/poi/src/main/java/org/apache/poi/ss/formula/functions/PercentRank.java b/poi/src/main/java/org/apache/poi/ss/formula/functions/PercentRank.java
index 115adf647e..eef3eac8c0 100644
--- a/poi/src/main/java/org/apache/poi/ss/formula/functions/PercentRank.java
+++ b/poi/src/main/java/org/apache/poi/ss/formula/functions/PercentRank.java
@@ -26,7 +26,7 @@ import java.util.Collections;
import java.util.List;
/**
- * Implementation of 'Analysis Toolpak' the Excel function PERCENTRANK()
+ * Implementation of 'the Excel function PERCENTRANK()
*
* <b>Syntax</b>:<br>
* <b>PERCENTRANK</b>(<b>array</b>, <b>X</b>, <b>[significance]</b>)<p>
@@ -37,6 +37,8 @@ import java.util.List;
* If omitted, PERCENTRANK uses three digits (0.xxx).<br>
* <br>
* Returns a number between 0 and 1 representing a percentage.
+ *
+ * @since POI 5.0.1
*/
public final class PercentRank implements Function {