You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2012/04/01 19:47:03 UTC

svn commit: r1308162 - in /commons/proper/math/trunk/src/main/java/org/apache/commons/math3: genetics/ stat/descriptive/ stat/inference/ util/

Author: tn
Date: Sun Apr  1 17:47:03 2012
New Revision: 1308162

URL: http://svn.apache.org/viewvc?rev=1308162&view=rev
Log:
MATH-767
Fixed unbalanced use of code tags in javadoc.
Thanks to Dennis Hendriks for reporting it.

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/genetics/Chromosome.java
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/genetics/ElitisticListPopulation.java
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/descriptive/AbstractStorelessUnivariateStatistic.java
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/inference/TTest.java
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/genetics/Chromosome.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/genetics/Chromosome.java?rev=1308162&r1=1308161&r2=1308162&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/genetics/Chromosome.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/genetics/Chromosome.java Sun Apr  1 17:47:03 2012
@@ -66,7 +66,7 @@ public abstract class Chromosome impleme
     }
 
     /**
-     * Returns <code>true<code> iff <code>another</code> has the same
+     * Returns <code>true</code> iff <code>another</code> has the same
      * representation and therefore the same fitness. By default, it returns
      * false -- override it in your implementation if you need it.
      * @param another chromosome to compare

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/genetics/ElitisticListPopulation.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/genetics/ElitisticListPopulation.java?rev=1308162&r1=1308161&r2=1308162&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/genetics/ElitisticListPopulation.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/genetics/ElitisticListPopulation.java Sun Apr  1 17:47:03 2012
@@ -64,7 +64,7 @@ public class ElitisticListPopulation ext
     }
 
     /**
-     * Start the population for the next generation. The <code>{@link #elitismRate}<code>
+     * Start the population for the next generation. The <code>{@link #elitismRate}</code>
      * percents of the best chromosomes are directly copied to the next generation.
      *
      * @return the beginnings of the next generation.

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/descriptive/AbstractStorelessUnivariateStatistic.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/descriptive/AbstractStorelessUnivariateStatistic.java?rev=1308162&r1=1308161&r2=1308162&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/descriptive/AbstractStorelessUnivariateStatistic.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/descriptive/AbstractStorelessUnivariateStatistic.java Sun Apr  1 17:47:03 2012
@@ -25,7 +25,7 @@ import org.apache.commons.math3.util.Pre
  *
  * Abstract implementation of the {@link StorelessUnivariateStatistic} interface.
  * <p>
- * Provides default <code>evaluate()</code> and <code>incrementAll(double[])<code>
+ * Provides default <code>evaluate()</code> and <code>incrementAll(double[])</code>
  * implementations.</p>
  * <p>
  * <strong>Note that these implementations are not synchronized.</strong></p>

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/inference/TTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/inference/TTest.java?rev=1308162&r1=1308161&r2=1308162&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/inference/TTest.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/inference/TTest.java Sun Apr  1 17:47:03 2012
@@ -254,7 +254,7 @@ public class TTest {
      * </p><p>
      * <code>var = sqrt(((n1 - 1)var1 + (n2 - 1)var2) / ((n1-1) + (n2-1)))</code>
      * </p><p>
-     * with <strong><code>var1<code></strong> the variance of the first sample and
+     * with <strong><code>var1</code></strong> the variance of the first sample and
      * <strong><code>var2</code></strong> the variance of the second sample.
      * </p><p>
      * <strong>Preconditions</strong>: <ul>
@@ -384,7 +384,7 @@ public class TTest {
      * </p><p>
      * <code>var = sqrt(((n1 - 1)var1 + (n2 - 1)var2) / ((n1-1) + (n2-1)))</code>
      * </p><p>
-     * with <strong><code>var1<code></strong> the variance of the first sample and
+     * with <strong><code>var1</code></strong> the variance of the first sample and
      * <strong><code>var2</code></strong> the variance of the second sample.
      * </p><p>
      * <strong>Preconditions</strong>: <ul>

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java?rev=1308162&r1=1308161&r2=1308162&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java Sun Apr  1 17:47:03 2012
@@ -440,7 +440,7 @@ public class ResizableDoubleArray implem
     }
 
     /**
-     * Discards the <code>i<code> initial elements of the array.  For example,
+     * Discards the <code>i</code> initial elements of the array.  For example,
      * if the array contains the elements 1,2,3,4, invoking
      * <code>discardFrontElements(2)</code> will cause the first two elements
      * to be discarded, leaving 3,4 in the array.  Throws illegalArgumentException
@@ -457,7 +457,7 @@ public class ResizableDoubleArray implem
     }
 
     /**
-     * Discards the <code>i<code> last elements of the array.  For example,
+     * Discards the <code>i</code> last elements of the array.  For example,
      * if the array contains the elements 1,2,3,4, invoking
      * <code>discardMostRecentElements(2)</code> will cause the last two elements
      * to be discarded, leaving 1,2 in the array.  Throws illegalArgumentException
@@ -474,7 +474,7 @@ public class ResizableDoubleArray implem
     }
 
     /**
-     * Discards the <code>i<code> first or last elements of the array,
+     * Discards the <code>i</code> first or last elements of the array,
      * depending on the value of <code>front</code>.
      * For example, if the array contains the elements 1,2,3,4, invoking
      * <code>discardExtremeElements(2,false)</code> will cause the last two elements