Author: luc
Date: Wed Mar 5 11:29:38 2008
New Revision: 633991
URL: http://svn.apache.org/viewvc?rev=633991&view=rev
Log:
fixed javadoc typos
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/BinomialDistributionImpl.java
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/CauchyDistributionImpl.java
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/ChiSquaredDistributionImpl.java
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/ContinuousDistribution.java
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/ExponentialDistributionImpl.java
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/GammaDistributionImpl.java
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/HypergeometricDistributionImpl.java
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/NormalDistributionImpl.java
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/TDistributionImpl.java
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/WeibullDistributionImpl.java
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/BinomialDistributionImpl.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/BinomialDistributionImpl.java?rev=633991&r1=633990&r2=633991&view=diff
==============================================================================
---
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/BinomialDistributionImpl.java
(original)
+++
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/BinomialDistributionImpl.java
Wed Mar 5 11:29:38 2008
@@ -142,7 +142,7 @@
}
/**
- * For this disbution, X, this method returns P(X = x).
+ * For this distribution, X, this method returns P(X = x).
*
* @param x the value at which the PMF is evaluated.
* @return PMF for this distribution.
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/CauchyDistributionImpl.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/CauchyDistributionImpl.java?rev=633991&r1=633990&r2=633991&view=diff
==============================================================================
---
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/CauchyDistributionImpl.java
(original)
+++
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/CauchyDistributionImpl.java
Wed Mar 5 11:29:38 2008
@@ -58,7 +58,7 @@
}
/**
- * For this disbution, X, this method returns P(X < <code>x</code>).
+ * For this distribution, X, this method returns P(X < <code>x</code>).
* @param x the value at which the CDF is evaluated.
* @return CDF evaluted at <code>x</code>.
*/
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/ChiSquaredDistributionImpl.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/ChiSquaredDistributionImpl.java?rev=633991&r1=633990&r2=633991&view=diff
==============================================================================
---
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/ChiSquaredDistributionImpl.java
(original)
+++
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/ChiSquaredDistributionImpl.java
Wed Mar 5 11:29:38 2008
@@ -72,7 +72,7 @@
}
/**
- * For this disbution, X, this method returns P(X < x).
+ * For this distribution, X, this method returns P(X < x).
* @param x the value at which the CDF is evaluated.
* @return CDF for this distribution.
* @throws MathException if the cumulative probability can not be
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/ContinuousDistribution.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/ContinuousDistribution.java?rev=633991&r1=633990&r2=633991&view=diff
==============================================================================
---
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/ContinuousDistribution.java
(original)
+++
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/ContinuousDistribution.java
Wed Mar 5 11:29:38 2008
@@ -26,7 +26,7 @@
public interface ContinuousDistribution extends Distribution {
/**
- * For this disbution, X, this method returns x such that P(X < x) = p.
+ * For this distribution, X, this method returns x such that P(X < x) =
p.
* @param p the cumulative probability.
* @return x.
* @throws MathException if the inverse cumulative probability can not be
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/ExponentialDistributionImpl.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/ExponentialDistributionImpl.java?rev=633991&r1=633990&r2=633991&view=diff
==============================================================================
---
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/ExponentialDistributionImpl.java
(original)
+++
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/ExponentialDistributionImpl.java
Wed Mar 5 11:29:38 2008
@@ -64,7 +64,7 @@
}
/**
- * For this disbution, X, this method returns P(X < x).
+ * For this distribution, X, this method returns P(X < x).
*
* The implementation of this method is based on:
* <ul>
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/GammaDistributionImpl.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/GammaDistributionImpl.java?rev=633991&r1=633990&r2=633991&view=diff
==============================================================================
---
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/GammaDistributionImpl.java
(original)
+++
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/GammaDistributionImpl.java
Wed Mar 5 11:29:38 2008
@@ -50,7 +50,7 @@
}
/**
- * For this disbution, X, this method returns P(X < x).
+ * For this distribution, X, this method returns P(X < x).
*
* The implementation of this method is based on:
* <ul>
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/HypergeometricDistributionImpl.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/HypergeometricDistributionImpl.java?rev=633991&r1=633990&r2=633991&view=diff
==============================================================================
---
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/HypergeometricDistributionImpl.java
(original)
+++
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/HypergeometricDistributionImpl.java
Wed Mar 5 11:29:38 2008
@@ -67,7 +67,7 @@
}
/**
- * For this disbution, X, this method returns P(X ≤ x).
+ * For this distribution, X, this method returns P(X ≤ x).
* @param x the value at which the PDF is evaluated.
* @return PDF for this distribution.
*/
@@ -178,7 +178,7 @@
}
/**
- * For this disbution, X, this method returns P(X = x).
+ * For this distribution, X, this method returns P(X = x).
*
* @param x the value at which the PMF is evaluated.
* @return PMF for this distribution.
@@ -201,7 +201,7 @@
}
/**
- * For the disbution, X, defined by the given hypergeometric distribution
+ * For the distribution, X, defined by the given hypergeometric
distribution
* parameters, this method returns P(X = x).
*
* @param n the population size.
@@ -256,7 +256,7 @@
}
/**
- * For this disbution, X, this method returns P(X ≥ x).
+ * For this distribution, X, this method returns P(X ≥ x).
* @param x the value at which the CDF is evaluated.
* @return upper tail CDF for this distribution.
* @since 1.1
@@ -281,7 +281,7 @@
}
/**
- * For this disbution, X, this method returns P(x0 ≤ X ≤ x1). This
+ * For this distribution, X, this method returns P(x0 ≤ X ≤ x1).
This
* probability is computed by summing the point probabilities for the
values
* x0, x0 + 1, x0 + 2, ..., x1, in the order directed by dx.
* @param x0 the inclusive, lower bound
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/NormalDistributionImpl.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/NormalDistributionImpl.java?rev=633991&r1=633990&r2=633991&view=diff
==============================================================================
---
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/NormalDistributionImpl.java
(original)
+++
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/NormalDistributionImpl.java
Wed Mar 5 11:29:38 2008
@@ -98,7 +98,7 @@
}
/**
- * For this disbution, X, this method returns P(X < <code>x</code>).
+ * For this distribution, X, this method returns P(X < <code>x</code>).
* @param x the value at which the CDF is evaluated.
* @return CDF evaluted at <code>x</code>.
* @throws MathException if the algorithm fails to converge; unless
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/TDistributionImpl.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/TDistributionImpl.java?rev=633991&r1=633990&r2=633991&view=diff
==============================================================================
---
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/TDistributionImpl.java
(original)
+++
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/TDistributionImpl.java
Wed Mar 5 11:29:38 2008
@@ -66,7 +66,7 @@
}
/**
- * For this disbution, X, this method returns P(X < <code>x</code>).
+ * For this distribution, X, this method returns P(X < <code>x</code>).
* @param x the value at which the CDF is evaluated.
* @return CDF evaluted at <code>x</code>.
* @throws MathException if the cumulative probability can not be
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/WeibullDistributionImpl.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/WeibullDistributionImpl.java?rev=633991&r1=633990&r2=633991&view=diff
==============================================================================
---
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/WeibullDistributionImpl.java
(original)
+++
commons/proper/math/trunk/src/java/org/apache/commons/math/distribution/WeibullDistributionImpl.java
Wed Mar 5 11:29:38 2008
@@ -51,7 +51,7 @@
}
/**
- * For this disbution, X, this method returns P(X < <code>x</code>).
+ * For this distribution, X, this method returns P(X < <code>x</code>).
* @param x the value at which the CDF is evaluated.
* @return CDF evaluted at <code>x</code>.
*/