diff --git a/src/main/java/org/apache/commons/math3/linear/EigenDecomposition.java b/src/main/java/org/apache/commons/math3/linear/EigenDecomposition.java index 6d53b5522..c47bec1ea 100644 --- a/src/main/java/org/apache/commons/math3/linear/EigenDecomposition.java +++ b/src/main/java/org/apache/commons/math3/linear/EigenDecomposition.java @@ -721,7 +721,7 @@ public class EigenDecomposition { * Transforms the matrix to Schur form and calculates the eigenvalues. * * @param matrix Matrix to transform. - * @return the {@link SchurTransform} for this matrix + * @return the {@link SchurTransformer Shur transform} for this matrix */ private SchurTransformer transformToSchur(final RealMatrix matrix) { final SchurTransformer schurTransform = new SchurTransformer(matrix);