fixed typo

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@789161 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2009-06-28 22:01:40 +00:00
parent 3cb90658a4
commit c7beb702d8
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ public class NordsieckStepInterpolator extends AbstractStepInterpolator {
Arrays.fill(interpolatedState, 0.0);
Arrays.fill(interpolatedDerivatives, 0.0);
// apply Taylor formula for high order to low order,
// apply Taylor formula from high order to low order,
// for the sake of numerical accuracy
final double[][] nData = nordsieck.getDataRef();
for (int i = nData.length - 1; i >= 0; --i) {