diff --git a/src/java/org/apache/commons/math/linear/LUDecomposition.java b/src/java/org/apache/commons/math/linear/LUDecomposition.java
index 9fe295aa9..62893ee26 100644
--- a/src/java/org/apache/commons/math/linear/LUDecomposition.java
+++ b/src/java/org/apache/commons/math/linear/LUDecomposition.java
@@ -28,8 +28,14 @@ package org.apache.commons.math.linear;
* JAMA library, with the
* following changes:
*
- * - several signatures have been added for the
solve
methods (in the superinterface),
- * - a
decompose
method has been added (in the superinterface),
+ * - several signatures have been added for the
solve
methods
+ * (in the superinterface),
+ * - a {@link DecompositionSolver#decompose(RealMatrix) decompose(RealMatrix)}
+ * method has been added (in the superinterface),
+ * - a {@link DecompositionSolver#isNonSingular() isNonSingular} method has
+ * been added (in the superinterface),
+ * - a {@link DecompositionSolver#getInverse() getInverse} method has been
+ * added (in the superinterface),
* - the
det
method has been renamed as {@link #getDeterminant() getDeterminant}.
*
*
diff --git a/src/java/org/apache/commons/math/linear/QRDecomposition.java b/src/java/org/apache/commons/math/linear/QRDecomposition.java
index f6daa18e9..fa12978e7 100644
--- a/src/java/org/apache/commons/math/linear/QRDecomposition.java
+++ b/src/java/org/apache/commons/math/linear/QRDecomposition.java
@@ -26,8 +26,10 @@ package org.apache.commons.math.linear;
*
* - several signatures have been added for the
solve
methods
* (in the superinterface),
- * - a {@link DecompositionSolver#decompose(RealMatrix) decompose} method
- * has been added (in the superinterface),
+ * - a {@link DecompositionSolver#decompose(RealMatrix) decompose(RealMatrix)}
+ * method has been added (in the superinterface),
+ * - a {@link DecompositionSolver#getInverse() getInverse} method has been
+ * added (in the superinterface),
* - the
isFullRank
method has been replaced by the {@link
* DecompositionSolver#isNonSingular() isNonSingular} method in the superinterface.
*