You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2009/06/29 00:01:41 UTC

svn commit: r789161 - /commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java

Author: luc
Date: Sun Jun 28 22:01:40 2009
New Revision: 789161

URL: http://svn.apache.org/viewvc?rev=789161&view=rev
Log:
fixed typo

Modified:
    commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java

Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java?rev=789161&r1=789160&r2=789161&view=diff
==============================================================================
--- commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java (original)
+++ commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java Sun Jun 28 22:01:40 2009
@@ -161,7 +161,7 @@
         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) {