Author: sebb
Date: Sun Aug 14 14:57:05 2011
New Revision: 1157539
URL: http://svn.apache.org/viewvc?rev=1157539&view=rev
Log:
Fix up mangled char in comment.
Looks to have been a UTF-8 char originally?
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/KolmogorovSmirnovDistributionImpl.java
Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/KolmogorovSmirnovDistributionImpl.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/KolmogorovSmirnovDistributionImpl.java?rev=1157539&r1=1157538&r2=1157539&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/KolmogorovSmirnovDistributionImpl.java
(original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/KolmogorovSmirnovDistributionImpl.java
Sun Aug 14 14:57:05 2011
@@ -342,7 +342,7 @@ public class KolmogorovSmirnovDistributi
/*
* Aside from the first column and last row, the (i, j)-th element is
- * 1/(i - j + 1)! if i â j + 1 >= 0, else 0. 1's and 0's are already
+ * 1/(i - j + 1)! if i - j + 1 >= 0, else 0. 1's and 0's are already
* put, so only division with (i - j + 1)! is needed in the elements
* that have 1's. There is no need to calculate (i - j + 1)! and then
* divide - small steps avoid overflows.
|