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 2010/08/02 00:24:31 UTC

svn commit: r981332 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/ranking/TiesStrategy.java

Author: psteitz
Date: Sun Aug  1 22:24:31 2010
New Revision: 981332

URL: http://svn.apache.org/viewvc?rev=981332&view=rev
Log:
Fixed javadoc errors.

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/ranking/TiesStrategy.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/ranking/TiesStrategy.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/ranking/TiesStrategy.java?rev=981332&r1=981331&r2=981332&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/ranking/TiesStrategy.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/ranking/TiesStrategy.java Sun Aug  1 22:24:31 2010
@@ -28,9 +28,9 @@ package org.apache.commons.math.stat.ran
  * of the last occurrence. For example, (1,3,4,3) is ranked as (1,3,4,3)</li>
  * <li>AVERAGE - Tied values are assigned the average of the applicable ranks.
  * For example, (1,3,4,3) is ranked as (1,2.5,4,2.5)</li>
- * <li>AVERAGE - Tied values are assigned a random integer rank from among the
+ * <li>RANDOM - Tied values are assigned a random integer rank from among the
  * applicable values. The assigned rank will always be an integer, (inclusively)
- * between the values retured by the MINIMUM and MAXIMUM strategies.</li>
+ * between the values returned by the MINIMUM and MAXIMUM strategies.</li>
  * </ul>
  *
  * @since 2.0