Skip to content

Commit db56bd9

Browse files
committed
fix whitespace
1 parent c497aaa commit db56bd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/LinearAlgebra/src/tridiag.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ function _opnorm1Inf(A::Tridiagonal, p)
647647
case = p == Inf
648648
lowerrange, upperrange = case ? (1:length(A.dl)-1, 2:length(A.dl)) : (2:length(A.dl), 1:length(A.dl)-1)
649649
normfirst, normend = case ? (norm(first(A.d))+norm(first(A.du)), norm(last(A.dl))+norm(last(A.d))) : (norm(first(A.d))+norm(first(A.dl)), norm(last(A.du))+norm(last(A.d)))
650-
650+
651651
return max(
652652
mapreduce(t -> sum(norm, t),
653653
max,

0 commit comments

Comments
 (0)