Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 81469 invoked from network); 22 Sep 2010 13:41:35 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 22 Sep 2010 13:41:35 -0000 Received: (qmail 21937 invoked by uid 500); 22 Sep 2010 13:41:35 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 21570 invoked by uid 500); 22 Sep 2010 13:41:32 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 21563 invoked by uid 99); 22 Sep 2010 13:41:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Sep 2010 13:41:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Sep 2010 13:41:29 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 17A002388A1C; Wed, 22 Sep 2010 13:41:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r999939 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java Date: Wed, 22 Sep 2010 13:41:08 -0000 To: commits@commons.apache.org From: erans@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100922134108.17A002388A1C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: erans Date: Wed Sep 22 13:41:07 2010 New Revision: 999939 URL: http://svn.apache.org/viewvc?rev=999939&view=rev Log: Fixed Javadoc warning. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java?rev=999939&r1=999938&r2=999939&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java Wed Sep 22 13:41:07 2010 @@ -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 */