From ab63431fbe06fd87708c3d92c781d535986f6524 Mon Sep 17 00:00:00 2001 From: Joerg Pietschmann Date: Wed, 2 Nov 2005 06:27:53 +0000 Subject: [PATCH] Fix typo (http://marc.theaimsgroup.com/?l=jakarta-commons-user&m=113088082306294&w=2) git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@330198 13f79535-47bb-0310-9956-ffa450edef68 --- xdocs/userguide/linear.xml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/xdocs/userguide/linear.xml b/xdocs/userguide/linear.xml index 2006f91b5..b8b336aea 100644 --- a/xdocs/userguide/linear.xml +++ b/xdocs/userguide/linear.xml @@ -56,10 +56,9 @@ RealMatrix m = new RealMatrixImpl(matrixData); // One more with three rows, two columns double[][] matrixData2 = { {1d,2d}, {2d,5d}, {1d, 7d}}; -RealMatrix n = new RealMatixImpl(matrixData2); +RealMatrix n = new RealMatrixImpl(matrixData2); -// Note: constructor makes a -// Fresh copy of the input double[][] array +// Note: The constructor copies the input double[][] array. // Now multiply m by n RealMatrix p = m.multiply(n);