Skip to content

Commit 8414b44

Browse files
authored
Fix comment in svd.jl
1 parent 3923792 commit 8414b44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/svd.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ function _svdvals!(B::Bidiagonal{T}; tol = eps(T)) where {T<:Real}
253253
return sort(abs.(diag(B)), rev = true)
254254
end
255255

256-
# We want to avoid that zero eigenvalues zero out any singular vectors so we'd
256+
# We want to avoid that zero singular values zero out any singular vectors so we'd
257257
# have to use a modified sign function
258258
_sign(x) = ifelse(iszero(x), one(x), sign(x))
259259

0 commit comments

Comments
 (0)