You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by ss...@apache.org on 2013/09/20 00:12:29 UTC

svn commit: r1524855 - /mahout/trunk/math/src/main/java/org/apache/mahout/math/Vector.java

Author: sslavic
Date: Thu Sep 19 22:12:29 2013
New Revision: 1524855

URL: http://svn.apache.org/r1524855
Log:
Fixed typo in javadoc

Modified:
    mahout/trunk/math/src/main/java/org/apache/mahout/math/Vector.java

Modified: mahout/trunk/math/src/main/java/org/apache/mahout/math/Vector.java
URL: http://svn.apache.org/viewvc/mahout/trunk/math/src/main/java/org/apache/mahout/math/Vector.java?rev=1524855&r1=1524854&r2=1524855&view=diff
==============================================================================
--- mahout/trunk/math/src/main/java/org/apache/mahout/math/Vector.java (original)
+++ mahout/trunk/math/src/main/java/org/apache/mahout/math/Vector.java Thu Sep 19 22:12:29 2013
@@ -366,7 +366,7 @@ public interface Vector extends Cloneabl
 
   /**
    * Examples speak louder than words:  aggregate(plus, pow(2)) is another way to say
-   * getLengthSquared(), aggregate(max, abs) is norm(Double.POSITIVE_INFINITY).  To sum all of the postive values,
+   * getLengthSquared(), aggregate(max, abs) is norm(Double.POSITIVE_INFINITY).  To sum all of the positive values,
    * aggregate(plus, max(0)).
    * @param aggregator used to combine the current value of the aggregation with the result of map.apply(nextValue)
    * @param map a function to apply to each element of the vector in turn before passing to the aggregator