From b625ebe85b1a5d9bc4169b9544e09ea9a287d017 Mon Sep 17 00:00:00 2001 From: Gilles Sadowski Date: Wed, 22 Sep 2010 13:41:07 +0000 Subject: [PATCH] Fixed Javadoc warning. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@999939 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/math/util/FastMath.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/math/util/FastMath.java b/src/main/java/org/apache/commons/math/util/FastMath.java index 9c471e636..4f5616b6f 100644 --- a/src/main/java/org/apache/commons/math/util/FastMath.java +++ b/src/main/java/org/apache/commons/math/util/FastMath.java @@ -2881,8 +2881,8 @@ public class FastMath { } /** Compute the cubic root of a number. - * @param a number on which evaluation is done - * @return cubic root of a + * @param x number on which evaluation is done + * @return cubic root of x */ public static double cbrt(double x) { /* Convert input double to bits */