Skip to content

Commit 40656b8

Browse files
committed
ptype -> plotter_type
thanks @copilot for the nitpick...
1 parent a343989 commit 40656b8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/dispatch.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -719,11 +719,11 @@ function vectorplot!(ctx::SubVisualizer, grid::ExtendableGrid, func; kwargs...)
719719
return vectorplot!(ctx, plottertype(ctx[:Plotter]), Val{dim_space(grid)}, grid, func)
720720
end
721721

722-
function vectorplot!(ctx, ptype::Type{T}, ::Type{Val{1}}, grid, func::Matrix) where {T <: AbstractPlotterType}
723-
return scalarplot!(ctx, ptype, Val{1}, [grid], grid, [func[1, :]])
722+
function vectorplot!(ctx, plotter_type::Type{T}, ::Type{Val{1}}, grid, func::Matrix) where {T <: AbstractPlotterType}
723+
return scalarplot!(ctx, plotter_type, Val{1}, [grid], grid, [func[1, :]])
724724
end
725-
function vectorplot!(ctx, ptype::Type{T}, ::Type{Val{1}}, grid, func::Vector) where {T <: AbstractPlotterType}
726-
return scalarplot!(ctx, ptype, Val{1}, [grid], grid, [func])
725+
function vectorplot!(ctx, plotter_type::Type{T}, ::Type{Val{1}}, grid, func::Vector) where {T <: AbstractPlotterType}
726+
return scalarplot!(ctx, plotter_type, Val{1}, [grid], grid, [func])
727727
end
728728

729729
"$(TYPEDSIGNATURES)"

0 commit comments

Comments
 (0)