Author: psteitz
Date: Sun Feb 13 19:17:27 2011
New Revision: 1070280
URL: http://svn.apache.org/viewvc?rev=1070280&view=rev
Log:
Fixed javadoc typo.
Modified:
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/integration/UnivariateRealIntegratorImpl.java
Modified:
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/integration/UnivariateRealIntegratorImpl.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/integration/UnivariateRealIntegratorImpl.java?rev=1070280&r1=1070279&r2=1070280&view=diff
==============================================================================
---
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/integration/UnivariateRealIntegratorImpl.java
(original)
+++
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/integration/UnivariateRealIntegratorImpl.java
Sun Feb 13 19:17:27 2011
@@ -46,9 +46,12 @@ public abstract class UnivariateRealInte
/** the last computed integral */
protected double result;
- /** The integrand functione.
+ /**
+ * The integrand function.
+ *
* @deprecated as of 2.0 the integrand function is passed as an argument
- * to the {@link #integrate(UnivariateRealFunction, double,
double)}method. */
+ * to the {@link #integrate(UnivariateRealFunction, double, double)}method.
+ */
@Deprecated
protected UnivariateRealFunction f;