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() * * Syntax:
* PERCENTRANK(array, X, [significance])

@@ -37,6 +37,8 @@ import java.util.List; * If omitted, PERCENTRANK uses three digits (0.xxx).
*
* Returns a number between 0 and 1 representing a percentage. + * + * @since POI 5.0.1 */ public final class PercentRank implements Function {