Fixed javadoc.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1245062 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2012-02-16 16:18:26 +00:00
parent 18e7e2ce91
commit abb99f4d0d
1 changed files with 5 additions and 5 deletions

View File

@ -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;