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 2013/07/16 15:35:20 UTC

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

Author: luc
Date: Tue Jul 16 13:35:19 2013
New Revision: 1503712

URL: http://svn.apache.org/r1503712
Log:
typos

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

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ode/sampling/NordsieckStepInterpolator.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ode/sampling/NordsieckStepInterpolator.java?rev=1503712&r1=1503711&r2=1503712&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ode/sampling/NordsieckStepInterpolator.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/ode/sampling/NordsieckStepInterpolator.java Tue Jul 16 13:35:19 2013
@@ -121,11 +121,11 @@ public class NordsieckStepInterpolator e
      * <p>Beware that all arrays <em>must</em> be references to integrator
      * arrays, in order to ensure proper update without copy.</p>
      * @param time time at which all arrays are defined
-     * @param stepSize step size used in the scaled and nordsieck arrays
+     * @param stepSize step size used in the scaled and Nordsieck arrays
      * @param scaledDerivative reference to the integrator array holding the first
      * scaled derivative
      * @param nordsieckVector reference to the integrator matrix holding the
-     * nordsieck vector
+     * Nordsieck vector
      */
     public void reinitialize(final double time, final double stepSize,
                              final double[] scaledDerivative,
@@ -141,9 +141,9 @@ public class NordsieckStepInterpolator e
     }
 
     /** Rescale the instance.
-     * <p>Since the scaled and Nordiseck arrays are shared with the caller,
+     * <p>Since the scaled and Nordsieck arrays are shared with the caller,
      * this method has the side effect of rescaling this arrays in the caller too.</p>
-     * @param stepSize new step size to use in the scaled and nordsieck arrays
+     * @param stepSize new step size to use in the scaled and Nordsieck arrays
      */
     public void rescale(final double stepSize) {