You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ps...@apache.org on 2013/03/29 15:36:59 UTC

svn commit: r1462487 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/differentiation/package-info.java

Author: psteitz
Date: Fri Mar 29 14:36:59 2013
New Revision: 1462487

URL: http://svn.apache.org/r1462487
Log:
Small edits.

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/differentiation/package-info.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/differentiation/package-info.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/differentiation/package-info.java?rev=1462487&r1=1462486&r2=1462487&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/differentiation/package-info.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/differentiation/package-info.java Fri Mar 29 14:36:59 2013
@@ -21,7 +21,7 @@
  *   dealing with differentiation.
  *   The core class is {@link org.apache.commons.math3.analysis.differentiation.DerivativeStructure
  *   DerivativeStructure} which holds the value and the differentials of a function. This class
- *   handles some arbitrary number of free parameters and arbitrary derivation order. It is used
+ *   handles some arbitrary number of free parameters and arbitrary differentiation order. It is used
  *   both as the input and the output type for the {@link
  *   org.apache.commons.math3.analysis.differentiation.UnivariateDifferentiableFunction
  *   UnivariateDifferentiableFunction} interface. Any differentiable function should implement this
@@ -29,7 +29,7 @@
  * </p>
  * <p>
  *   The {@link org.apache.commons.math3.analysis.differentiation.UnivariateFunctionDifferentiator
- *   UnivariateFunctionDifferentiator} interface defines a way to differentiation a simple {@link
+ *   UnivariateFunctionDifferentiator} interface defines a way to differentiate a simple {@link
  *   org.apache.commons.math3.analysis.UnivariateFunction UnivariateFunction} and get a {@link
  *   org.apache.commons.math3.analysis.differentiation.UnivariateDifferentiableFunction
  *   UnivariateDifferentiableFunction}.