Skip to content

Commit

Permalink
dropped an extra println statement, maintained readability. (JuliaLan…
Browse files Browse the repository at this point in the history
  • Loading branch information
caseykneale authored and LilithHafner committed Mar 8, 2022
1 parent 517a735 commit 9424211
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stdlib/LinearAlgebra/src/bidiag.jl
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ end

function show(io::IO, M::Bidiagonal)
# TODO: make this readable and one-line
summary(io, M); println(io, ":")
print(io, " diag:")
summary(io, M)
print(io, ":\n diag:")
print_matrix(io, (M.dv)')
print(io, M.uplo == 'U' ? "\n super:" : "\n sub:")
print_matrix(io, (M.ev)')
Expand Down

0 comments on commit 9424211

Please sign in to comment.