Skip to content

Commit 115c0af

Browse files
committed
fixed typos in some p1 elements
1 parent 1f3c5c1 commit 115c0af

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/fedefs/h1_p1.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ end
4141
function ExtendableGrids.interpolate!(Target, FE::FESpace{Tv, Ti, FEType, APT}, ::Type{ON_EDGES}, exact_function!; items = [], kwargs...) where {Tv, Ti, FEType <: H1P1, APT}
4242
# delegate edge nodes to node interpolation
4343
subitems = slice(FE.dofgrid[EdgeNodes], items)
44-
return interpolaste!(Target, FE, AT_NODES, exact_function!; items = subitems, kwargs...)
44+
return interpolate!(Target, FE, AT_NODES, exact_function!; items = subitems, kwargs...)
4545
end
4646

4747
function ExtendableGrids.interpolate!(Target, FE::FESpace{Tv, Ti, FEType, APT}, ::Type{ON_FACES}, exact_function!; items = [], kwargs...) where {Tv, Ti, FEType <: H1P1, APT}

src/fedefs/l2_p1.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ end
4343
function ExtendableGrids.interpolate!(Target, FE::FESpace{Tv, Ti, FEType, APT}, ::Type{ON_EDGES}, exact_function!; items = [], kwargs...) where {Tv, Ti, FEType <: L2P1, APT}
4444
# delegate edge nodes to node interpolation
4545
subitems = slice(FE.dofgrid[EdgeNodes], items)
46-
return interpolaste!(Target, FE, AT_NODES, exact_function!; items = subitems, kwargs...)
46+
return interpolate!(Target, FE, AT_NODES, exact_function!; items = subitems, kwargs...)
4747
end
4848

4949
function ExtendableGrids.interpolate!(Target, FE::FESpace{Tv, Ti, FEType, APT}, ::Type{ON_FACES}, exact_function!; items = [], kwargs...) where {Tv, Ti, FEType <: L2P1, APT}

0 commit comments

Comments
 (0)