Javadoc typos

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_X@1042510 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2010-12-06 01:54:18 +00:00
parent 4071c1f739
commit 906090e2ba
4 changed files with 4 additions and 4 deletions

View File

@ -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&apos;s original article </a>
* @since 2.0
*/
public static double digamma(double x) {

View File

@ -41,7 +41,7 @@ public class DefaultTransformer implements NumberTransformer, Serializable {
* @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) {

View File

@ -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[]) {

View File

@ -147,7 +147,7 @@ public class MultidimensionalCounter implements Iterable<Integer> {
}
/**
* @throws UnsupportedOperationException.
* @throws UnsupportedOperationException
*/
public void remove() {
throw new UnsupportedOperationException();