You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2010/01/22 19:40:28 UTC

svn commit: r902214 - in /commons/proper/math/trunk/src/main/java/org/apache/commons/math: linear/RealVector.java ode/events/EventHandler.java util/MathUtils.java

Author: sebb
Date: Fri Jan 22 18:40:28 2010
New Revision: 902214

URL: http://svn.apache.org/viewvc?rev=902214&view=rev
Log:
Javadoc fixes

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RealVector.java
    commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/events/EventHandler.java
    commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RealVector.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RealVector.java?rev=902214&r1=902213&r2=902214&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RealVector.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RealVector.java Fri Jan 22 18:40:28 2010
@@ -110,7 +110,7 @@
      * Specialized implementations may choose to not iterate over all dimensions, either because those values are
      * unset, or are equal to defaultValue(), or are small enough to be ignored for the purposes of iteration.
      * No guarantees are made about order of iteration.
-     * In dense implementations, this method will often delegate to {@see #iterator() }
+     * In dense implementations, this method will often delegate to {@link #iterator()}
      * @return a sparse iterator
      */
     Iterator<Entry> sparseIterator();

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/events/EventHandler.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/events/EventHandler.java?rev=902214&r1=902213&r2=902214&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/events/EventHandler.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/events/EventHandler.java Fri Jan 22 18:40:28 2010
@@ -128,7 +128,7 @@
 
    * <p>The scheduling between this method and the {@link
    * org.apache.commons.math.ode.sampling.StepHandler StepHandler} method {@link
-   * org.apache.commons.math.ode.sampling.StepNormalizerStepHandler#handleStep(
+   * org.apache.commons.math.ode.sampling.StepHandler#handleStep(
    * org.apache.commons.math.ode.sampling.StepInterpolator, boolean)
    * handleStep(interpolator, isLast)} is to call this method first and
    * <code>handleStep</code> afterwards. This scheduling allows the integrator to

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java?rev=902214&r1=902213&r2=902214&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java Fri Jan 22 18:40:28 2010
@@ -692,8 +692,8 @@
      * <code>0L</code>.</li>
      * </ul>
      * 
-     * @param u any number
-     * @param v any number
+     * @param p any number
+     * @param q any number
      * @return the greatest common divisor, never negative
      * @throws ArithmeticException if the result cannot be represented as a nonnegative long
      * value