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/08/12 13:48:03 UTC

svn commit: r803461 - in /commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core: UnivariateDerivative.java UnivariateDifferentiable.java

Author: luc
Date: Wed Aug 12 11:48:03 2009
New Revision: 803461

URL: http://svn.apache.org/viewvc?rev=803461&view=rev
Log:
javadoc typos

Modified:
    commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core/UnivariateDerivative.java
    commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core/UnivariateDifferentiable.java

Modified: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core/UnivariateDerivative.java
URL: http://svn.apache.org/viewvc/commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core/UnivariateDerivative.java?rev=803461&r1=803460&r2=803461&view=diff
==============================================================================
--- commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core/UnivariateDerivative.java (original)
+++ commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core/UnivariateDerivative.java Wed Aug 12 11:48:03 2009
@@ -17,7 +17,7 @@
 package org.apache.commons.nabla.core;
 
 /** Interface for univariate functions derivatives.
- * <p>This interface represent a simple function which computes
+ * <p>This interface represents a simple function which computes
  * both the value and the first derivative of a mathematical function.
  * The derivative is computed with respect to the input variable.</p>
  * <p>Classes implementing this interface are automatically built by
@@ -43,7 +43,7 @@
      *    derivable.someFunctionThatMutatesHeavilyTheInstance();
      *    double f1 = derivable.f(t);
      *    double f2 = derivative.getPrimitive().f(t);
-     *    double f3 = detivative.f(DifferentialPair.newVariable(t)).getU0();
+     *    double f3 = derivative.f(DifferentialPair.newVariable(t)).getU0();
      * </pre>
      * @return primitive function bound to this derivative
      */

Modified: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core/UnivariateDifferentiable.java
URL: http://svn.apache.org/viewvc/commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core/UnivariateDifferentiable.java?rev=803461&r1=803460&r2=803461&view=diff
==============================================================================
--- commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core/UnivariateDifferentiable.java (original)
+++ commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/core/UnivariateDifferentiable.java Wed Aug 12 11:48:03 2009
@@ -19,7 +19,7 @@
 /** Interface for differentiable univariate functions.
  * <p>This interface should be implemented by the user
  * classes that are intended to be differentiated by the
- * Nabla library. It represent a simple function.</p>
+ * Nabla library. It represents a simple function.</p>
  * @see UnivariateDerivative
  * @see UnivariateDifferentiator
  */