Author: luc
Date: Sat Jan 19 13:45:11 2008
New Revision: 613461

URL: http://svn.apache.org/viewvc?rev=613461&view=rev
Log:
fixed javadoc typos

Modified:
    
commons/proper/math/trunk/src/java/org/apache/commons/math/linear/RealMatrixImpl.java

Modified: 
commons/proper/math/trunk/src/java/org/apache/commons/math/linear/RealMatrixImpl.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/linear/RealMatrixImpl.java?rev=613461&r1=613460&r2=613461&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/java/org/apache/commons/math/linear/RealMatrixImpl.java
 (original)
+++ 
commons/proper/math/trunk/src/java/org/apache/commons/math/linear/RealMatrixImpl.java
 Sat Jan 19 13:45:11 2008
@@ -24,10 +24,10 @@
 /**
  * Implementation of RealMatrix using a double[][] array to store entries and
  * <a href="http://www.math.gatech.edu/~bourbaki/math2601/Web-notes/2num.pdf";>
- * LU decompostion</a> to support linear system
+ * LU decomposition</a> to support linear system
  * solution and inverse.
  * <p>
- * The LU decompostion is performed as needed, to support the following 
operations: <ul>
+ * The LU decomposition is performed as needed, to support the following 
operations: <ul>
  * <li>solve</li>
  * <li>isSingular</li>
  * <li>getDeterminant</li>
@@ -756,11 +756,11 @@
     /**
      * Computes a new
      * <a 
href="http://www.math.gatech.edu/~bourbaki/math2601/Web-notes/2num.pdf";>
-     * LU decompostion</a> for this matrix, storing the result for use by 
other methods.
+     * LU decomposition</a> for this matrix, storing the result for use by 
other methods.
      * <p>
      * <strong>Implementation Note</strong>:<br>
      * Uses <a 
href="http://www.damtp.cam.ac.uk/user/fdl/people/sd/lectures/nummeth98/linear.htm";>
-     * Crout's algortithm</a>, with partial pivoting.
+     * Crout's algorithm</a>, with partial pivoting.
      * <p>
      * <strong>Usage Note</strong>:<br>
      * This method should rarely be invoked directly. Its only use is
@@ -1011,7 +1011,7 @@
      * Verifies that the input array is rectangular and non-empty
      *
      * @param in data to copy in
-     * @throws IllegalArgumentException if input array is emtpy or not
+     * @throws IllegalArgumentException if input array is empty or not
      *    rectangular
      * @throws NullPointerException if input array is null
      */


Reply via email to