You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ce...@apache.org on 2012/01/17 08:22:42 UTC

svn commit: r1232325 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/LogNormalDistribution.java

Author: celestin
Date: Tue Jan 17 07:22:42 2012
New Revision: 1232325

URL: http://svn.apache.org/viewvc?rev=1232325&view=rev
Log:
Javadoc (MATH-733).

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/LogNormalDistribution.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/LogNormalDistribution.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/LogNormalDistribution.java?rev=1232325&r1=1232324&r2=1232325&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/LogNormalDistribution.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/LogNormalDistribution.java Tue Jan 17 07:22:42 2012
@@ -30,7 +30,7 @@ import org.apache.commons.math.util.Fast
  * <a id="parameters"><strong>Parameters:</strong></a>
  * {@code X} is log-normally distributed if its natural logarithm {@code log(X)}
  * is normally distributed. The probability distribution function of {@code X}
- * is given by (for {@code x >= 0})
+ * is given by (for {@code x > 0})
  * </p>
  * <p>
  * {@code exp(-0.5 * ((ln(x) - m) / s)^2) / (s * sqrt(2 * pi) * x)}