Skip to content

Commit 8ebae19

Browse files
authored
Fix Jacobi error message (#54)
1 parent 61f9869 commit 8ebae19

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/implementations/svd.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ function svd_full!(A::AbstractMatrix, USVᴴ, alg::LAPACK_SVDAlgorithm)
176176
elseif alg isa LAPACK_Bisection
177177
throw(ArgumentError("LAPACK_Bisection is not supported for full SVD"))
178178
elseif alg isa LAPACK_Jacobi
179-
throw(ArgumentError("LAPACK_Bisection is not supported for full SVD"))
179+
throw(ArgumentError("LAPACK_Jacobi is not supported for full SVD"))
180180
else
181181
throw(ArgumentError("Unsupported SVD algorithm"))
182182
end

0 commit comments

Comments
 (0)