fixed charact with wrong encoding

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1157739 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2011-08-15 08:49:39 +00:00
parent 71df2effec
commit e7df350a55
1 changed files with 1 additions and 1 deletions

View File

@ -1005,7 +1005,7 @@ public class FastMath {
* For x between 0 and 1, returns exp(x), uses extended precision
* @param x argument of exponential
* @param result placeholder where to place exp(x) split in two terms
* for extra precision (i.e. exp(x) = result[0] ° result[1]
* for extra precision (i.e. exp(x) = result[0] + result[1]
* @return exp(x)
*/
private static double slowexp(final double x, final double result[]) {