Fix up mangled char in comment.

Looks to have been a UTF-8 char originally?

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1157539 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2011-08-14 14:57:05 +00:00
parent 6983d81680
commit b19a671a94
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ public class KolmogorovSmirnovDistributionImpl implements KolmogorovSmirnovDistr
/*
* 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.