Author: sebb Date: Mon Dec 6 01:54:18 2010 New Revision: 1042510 URL: http://svn.apache.org/viewvc?rev=1042510&view=rev Log: Javadoc typos
Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/special/Gamma.java commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/DefaultTransformer.java commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/FastMath.java commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/MultidimensionalCounter.java Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/special/Gamma.java URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/special/Gamma.java?rev=1042510&r1=1042509&r2=1042510&view=diff ============================================================================== --- commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/special/Gamma.java (original) +++ commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/special/Gamma.java Mon Dec 6 01:54:18 2010 @@ -288,7 +288,7 @@ public class Gamma { * @param x the argument * @return digamma(x) to within 10-8 relative or absolute error whichever is smaller * @see <a href="http://en.wikipedia.org/wiki/Digamma_function"> Digamma at wikipedia </a> - * @see <a href="http://www.uv.es/~bernardo/1976AppStatist.pdf"> Bernardo's original article </a> + * @see <a href="http://www.uv.es/~bernardo/1976AppStatist.pdf"> Bernardo's original article </a> * @since 2.0 */ public static double digamma(double x) { Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/DefaultTransformer.java URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/DefaultTransformer.java?rev=1042510&r1=1042509&r2=1042510&view=diff ============================================================================== --- commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/DefaultTransformer.java (original) +++ commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/DefaultTransformer.java Mon Dec 6 01:54:18 2010 @@ -41,7 +41,7 @@ public class DefaultTransformer implemen * @return a double primitive representation of the Object o. * @throws MathException if it cannot successfully be transformed. * @throws NullArgumentException if is {...@code null}. - * @see <a href="http://commons.apache.org/collections/api-release/org/apache/commons/collections/Transformer.html"/> + * @see <a href="http://commons.apache.org/collections/api-release/org/apache/commons/collections/Transformer.html">Commons Collections Transformer</a> */ public double transform(Object o) throws MathException { if (o == null) { Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/FastMath.java URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/FastMath.java?rev=1042510&r1=1042509&r2=1042510&view=diff ============================================================================== --- commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/FastMath.java (original) +++ commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/FastMath.java Mon Dec 6 01:54:18 2010 @@ -756,7 +756,7 @@ public class FastMath { /** Internal helper method for expm1 * @param x number to compute shifted exponential - * @param hiPrecOut[] receive high precision result for -1.0 < x < 1.0 + * @param hiPrecOut array to receive high precision result for -1.0 < x < 1.0 * @return exp(x) - 1 */ private static double expm1(double x, double hiPrecOut[]) { Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/MultidimensionalCounter.java URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/MultidimensionalCounter.java?rev=1042510&r1=1042509&r2=1042510&view=diff ============================================================================== --- commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/MultidimensionalCounter.java (original) +++ commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/MultidimensionalCounter.java Mon Dec 6 01:54:18 2010 @@ -147,7 +147,7 @@ public class MultidimensionalCounter imp } /** - * @throws UnsupportedOperationException. + * @throws UnsupportedOperationException */ public void remove() { throw new UnsupportedOperationException();