Skip to content

Commit 8c1c00f

Browse files
committed
Dumb typo fix
1 parent fa1389a commit 8c1c00f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/implementations/eigh.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ function eigh_full!(A::Diagonal, DV, alg::DiagonalAlgorithm)
153153
diagview(D) .= real.(diagview(A))[I]
154154
end
155155
zero!(V)
156-
Is = [ix -> CartesianIndex(ix, I[ix]) for ix in 1:size(A, 1)]
156+
Is = [CartesianIndex(ix, I[ix]) for ix in 1:size(A, 1)]
157157
V[Is] .= one(eltype(A))
158158
return D, V
159159
end

0 commit comments

Comments
 (0)