From 3f7280b87e2e87a97e6fb3aa77f4fbd3cc977651 Mon Sep 17 00:00:00 2001 From: Thomas Neidhart Date: Wed, 20 Mar 2013 22:24:09 +0000 Subject: [PATCH] Fix typo. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1459082 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/math3/linear/Array2DRowRealMatrix.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/math3/linear/Array2DRowRealMatrix.java b/src/main/java/org/apache/commons/math3/linear/Array2DRowRealMatrix.java index 223fe95c3..5f6f2bebd 100644 --- a/src/main/java/org/apache/commons/math3/linear/Array2DRowRealMatrix.java +++ b/src/main/java/org/apache/commons/math3/linear/Array2DRowRealMatrix.java @@ -71,7 +71,7 @@ public class Array2DRowRealMatrix extends AbstractRealMatrix implements Serializ * * @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 extends AbstractRealMatrix implements Serializ * @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[][]) */