Fixed typo in Javadoc comment.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@992897 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2010-09-05 21:37:50 +00:00
parent 80384009b3
commit fc5606177f
1 changed files with 3 additions and 2 deletions

View File

@ -24,9 +24,10 @@ import org.apache.commons.math.util.FastMath;
/**
* Returns the sum of the natural logs for this collection of values.
* <p>
* Uses {@link org.apache.commons.Math.util.FastMath#log(double)} to compute the logs. Therefore,
* Uses {@link org.apache.commons.math.util.FastMath#log(double)} to compute the logs.
* Therefore,
* <ul>
* <li>If any of values are < 0, the result is <code>NaN.</code></li>
* <li>If any of values are &lt; 0, the result is <code>NaN.</code></li>
* <li>If all values are non-negative and less than
* <code>Double.POSITIVE_INFINITY</code>, but at least one value is 0, the
* result is <code>Double.NEGATIVE_INFINITY.</code></li>