Skip to content

Commit 514da67

Browse files
committed
fix typo
1 parent d5111de commit 514da67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/conversion.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function SparseArrays.sparse(A::LinearMap{T}) where {T}
2828
v = fill(zero(T), N)
2929
Av = Vector{T}(undef, M)
3030

31-
@inbounds for i in eachindex(v, colptr)
31+
@inbounds for i in eachindex(v)
3232
v[i] = one(T)
3333
_unsafe_mul!(Av, A, v)
3434
js = findall(!iszero, Av)

0 commit comments

Comments
 (0)