Skip to content

Commit f03ff94

Browse files
authored
Merge pull request #126 from JordiManyer/jordi-dev
Fixed typo
2 parents 60bc425 + df3dbb7 commit f03ff94

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/p_sparse_matrix.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -1423,7 +1423,7 @@ end
14231423
function consistent(A::PSparseMatrix,rows_co;kwargs...)
14241424
@assert A.assembled
14251425
T = eltype(partition(A))
1426-
psparse_consitent_impl(A,T,rows_co;kwargs...)
1426+
psparse_consistent_impl(A,T,rows_co;kwargs...)
14271427
end
14281428

14291429
"""
@@ -1432,10 +1432,10 @@ end
14321432
function consistent!(B::PSparseMatrix,A::PSparseMatrix,cache)
14331433
@assert A.assembled
14341434
T = eltype(partition(A))
1435-
psparse_consitent_impl!(B,A,T,cache)
1435+
psparse_consistent_impl!(B,A,T,cache)
14361436
end
14371437

1438-
function psparse_consitent_impl(
1438+
function psparse_consistent_impl(
14391439
A,
14401440
::Type{<:AbstractSplitMatrix},
14411441
rows_co;
@@ -1576,7 +1576,7 @@ function psparse_consitent_impl(
15761576
end
15771577
end
15781578

1579-
function psparse_consitent_impl!(B,A,::Type{<:AbstractSplitMatrix},cache)
1579+
function psparse_consistent_impl!(B,A,::Type{<:AbstractSplitMatrix},cache)
15801580
function setup_snd(A,cache)
15811581
k_snd_data = cache.k_snd.data
15821582
V_snd_data = cache.V_snd.data

0 commit comments

Comments
 (0)