Skip to content

Commit a9b87fe

Browse files
committed
Whitespace
1 parent 97999e8 commit a9b87fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/triangular.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -815,7 +815,7 @@ function _triscale!(A::LowerOrUnitLowerTriangular, B::UnitLowerTriangular, c::Nu
815815
checksize1(A, B)
816816
_iszero_alpha(_add) && return _rmul_or_fill!(A, _add.beta)
817817
for j in axes(B.data,2)
818-
@inbounds _modify!(_add, B[BandIndex(0,j)] *c, A, (j,j))
818+
@inbounds _modify!(_add, B[BandIndex(0,j)] * c, A, (j,j))
819819
for i in (j + 1):lastindex(B.data,1)
820820
@inbounds _modify!(_add, B.data[i,j] * c, A.data, (i,j))
821821
end

0 commit comments

Comments
 (0)