You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2012/02/16 17:18:27 UTC

svn commit: r1245062 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/FastMathLiteralArrays.java

Author: luc
Date: Thu Feb 16 16:18:26 2012
New Revision: 1245062

URL: http://svn.apache.org/viewvc?rev=1245062&view=rev
Log:
Fixed javadoc.

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/FastMathLiteralArrays.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/FastMathLiteralArrays.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/FastMathLiteralArrays.java?rev=1245062&r1=1245061&r2=1245062&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/FastMathLiteralArrays.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/FastMathLiteralArrays.java Thu Feb 16 16:18:26 2012
@@ -6136,7 +6136,7 @@ class FastMathLiteralArrays {
     /**
      * Load "EXP_INT_A".
      *
-     * @return a clone of the data array.
+     * @return the data array.
      */
     static double[] loadExpIntA() {
         return EXP_INT_A;
@@ -6144,7 +6144,7 @@ class FastMathLiteralArrays {
     /**
      * Load "EXP_INT_B".
      *
-     * @return a clone of the data array.
+     * @return the data array.
      */
     static double[] loadExpIntB() {
         return EXP_INT_B;
@@ -6152,7 +6152,7 @@ class FastMathLiteralArrays {
     /**
      * Load "EXP_FRAC_A".
      *
-     * @return a clone of the data array.
+     * @return the data array.
      */
     static double[] loadExpFracA() {
         return EXP_FRAC_A;
@@ -6160,7 +6160,7 @@ class FastMathLiteralArrays {
     /**
      * Load "EXP_FRAC_B".
      *
-     * @return a clone of the data array.
+     * @return the data array.
      */
     static double[] loadExpFracB() {
         return EXP_FRAC_B;
@@ -6168,7 +6168,7 @@ class FastMathLiteralArrays {
     /**
      * Load "LN_MANT".
      *
-     * @return a clone of the data array.
+     * @return the data array.
      */
     static double[][] loadLnMant() {
         return LN_MANT;