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 2013/03/20 23:24:10 UTC

svn commit: r1459082 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/Array2DRowRealMatrix.java

Author: tn
Date: Wed Mar 20 22:24:09 2013
New Revision: 1459082

URL: http://svn.apache.org/r1459082
Log:
Fix typo.

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/Array2DRowRealMatrix.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/Array2DRowRealMatrix.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/Array2DRowRealMatrix.java?rev=1459082&r1=1459081&r2=1459082&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/Array2DRowRealMatrix.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/Array2DRowRealMatrix.java Wed Mar 20 22:24:09 2013
@@ -71,7 +71,7 @@ public class Array2DRowRealMatrix extend
      *
      * @param d Data for the new matrix.
      * @throws DimensionMismatchException if {@code d} is not rectangular.
-     * @throws NoDataException if {@code d} row or colum dimension is zero.
+     * @throws NoDataException if {@code d} row or column dimension is zero.
      * @throws NullArgumentException if {@code d} is {@code null}.
      * @see #Array2DRowRealMatrix(double[][], boolean)
      */
@@ -92,7 +92,7 @@ public class Array2DRowRealMatrix extend
      * @param copyArray if {@code true}, the input array will be copied,
      * otherwise it will be referenced.
      * @throws DimensionMismatchException if {@code d} is not rectangular.
-     * @throws NoDataException if {@code d} row or colum dimension is zero.
+     * @throws NoDataException if {@code d} row or column dimension is zero.
      * @throws NullArgumentException if {@code d} is {@code null}.
      * @see #Array2DRowRealMatrix(double[][])
      */