Skip to content

Commit 950959b

Browse files
committed
fix variable names
1 parent 80062b5 commit 950959b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/triangular.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -641,14 +641,14 @@ end
641641
dest[col, col] = U[BandIndex(0,col)]
642642
dest
643643
end
644-
@propagate_inbounds function copy_unaliased_stored!(dest, U::LowerTriangular, col)
644+
@propagate_inbounds function copy_unaliased_stored!(dest, L::LowerTriangular, col)
645645
for row in col:lastindex(dest,1)
646646
dest[row,col] = L.data[row,col]
647647
end
648648
dest
649649
end
650-
@propagate_inbounds function copy_unaliased_stored!(dest, U::UnitLowerTriangular, col)
651-
dest[col, col] = U[BandIndex(0,col)]
650+
@propagate_inbounds function copy_unaliased_stored!(dest, L::UnitLowerTriangular, col)
651+
dest[col, col] = L[BandIndex(0,col)]
652652
for row in col+1:lastindex(dest,1)
653653
dest[row,col] = L.data[row,col]
654654
end

0 commit comments

Comments
 (0)