Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JordiManyer committed Jan 22, 2024
1 parent 60bc425 commit df3dbb7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/p_sparse_matrix.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1423,7 +1423,7 @@ end
function consistent(A::PSparseMatrix,rows_co;kwargs...)
@assert A.assembled
T = eltype(partition(A))
psparse_consitent_impl(A,T,rows_co;kwargs...)
psparse_consistent_impl(A,T,rows_co;kwargs...)
end

"""
Expand All @@ -1432,10 +1432,10 @@ end
function consistent!(B::PSparseMatrix,A::PSparseMatrix,cache)
@assert A.assembled
T = eltype(partition(A))
psparse_consitent_impl!(B,A,T,cache)
psparse_consistent_impl!(B,A,T,cache)
end

function psparse_consitent_impl(
function psparse_consistent_impl(
A,
::Type{<:AbstractSplitMatrix},
rows_co;
Expand Down Expand Up @@ -1576,7 +1576,7 @@ function psparse_consitent_impl(
end
end

function psparse_consitent_impl!(B,A,::Type{<:AbstractSplitMatrix},cache)
function psparse_consistent_impl!(B,A,::Type{<:AbstractSplitMatrix},cache)
function setup_snd(A,cache)
k_snd_data = cache.k_snd.data
V_snd_data = cache.V_snd.data
Expand Down

0 comments on commit df3dbb7

Please sign in to comment.