Skip to content

Commit 72e58c7

Browse files
authored
fix method for bidiag
1 parent 342fc63 commit 72e58c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bidiag.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ Bidiagonal{T}(A::Bidiagonal) where {T} = Bidiagonal{T}(A.dv, A.ev, A.uplo)
120120
121121
Return a `Symbol` corresponding to whether the upper (`:U`) or lower (`:L`) off-diagonal band is stored.
122122
"""
123-
uplo(::Bidiagonal) = sym_uplo(B.uplo)
123+
uplo(B::Bidiagonal) = sym_uplo(B.uplo)
124124

125125
_offdiagind(uplo) = uplo == 'U' ? 1 : -1
126126

0 commit comments

Comments
 (0)