Fix typo.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1459082 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-03-20 22:24:09 +00:00
parent cb83dcd4a3
commit 3f7280b87e
1 changed files with 2 additions and 2 deletions

View File

@ -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[][])
*/