Skip to content

Commit a93d4db

Browse files
committed
fix variable names
1 parent 3d53c12 commit a93d4db

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
@@ -630,14 +630,14 @@ end
630630
dest[col, col] = U[BandIndex(0,col)]
631631
dest
632632
end
633-
@propagate_inbounds function copyto_unaliased_stored!(dest, U::LowerTriangular, col)
633+
@propagate_inbounds function copyto_unaliased_stored!(dest, L::LowerTriangular, col)
634634
for row in col:lastindex(dest,1)
635635
dest[row,col] = L.data[row,col]
636636
end
637637
dest
638638
end
639-
@propagate_inbounds function copyto_unaliased_stored!(dest, U::UnitLowerTriangular, col)
640-
dest[col, col] = U[BandIndex(0,col)]
639+
@propagate_inbounds function copyto_unaliased_stored!(dest, L::UnitLowerTriangular, col)
640+
dest[col, col] = L[BandIndex(0,col)]
641641
for row in col+1:lastindex(dest,1)
642642
dest[row,col] = L.data[row,col]
643643
end

0 commit comments

Comments
 (0)