Author: erans
Date: Sun Sep 5 21:37:50 2010
New Revision: 992897
URL: http://svn.apache.org/viewvc?rev=992897&view=rev
Log:
Fixed typo in Javadoc comment.
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/summary/SumOfLogs.java
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/summary/SumOfLogs.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/summary/SumOfLogs.java?rev=992897&r1=992896&r2=992897&view=diff
==============================================================================
---
commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/summary/SumOfLogs.java
(original)
+++
commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/summary/SumOfLogs.java
Sun Sep 5 21:37:50 2010
@@ -24,9 +24,10 @@ import org.apache.commons.math.util.Fast
/**
* 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 < 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>