From 1b2f813ee6fb3ac9a25615596aaf8e243514709c Mon Sep 17 00:00:00 2001 From: Andrew Winters Date: Mon, 8 Apr 2024 07:03:16 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Hendrik Ranocha --- src/Viz/visualization.jl | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/Viz/visualization.jl b/src/Viz/visualization.jl index 397dee64..d5b04136 100644 --- a/src/Viz/visualization.jl +++ b/src/Viz/visualization.jl @@ -18,11 +18,10 @@ just the mesh, `plotOptions = MESH`. To plot everything, `plotOptions = MODEL + GRID + MESH + REFINEMENTS` -Contents are overlaid in the order: GRID, MESH, MODEL, REFINEMENTS -!!! note - The function implementation is found in `ext/VizProject.jl`. +Contents are overlaid in the order: `GRID`, `MESH`, `MODEL`, `REFINEMENTS` """ function plotProject! end +# Note: The function implementation is found in `ext/VizProject.jl`. """ @@ -32,9 +31,7 @@ Replot with the new plotOptions = combinations (sums) of GRID, MESH, MODEL, REFINEMENTS -Example: updatePlot!(p, MESH + MODEL) - -!!! note - The function implementation is found in `ext/VizProject.jl`. +Example: `updatePlot!(p, MESH + MODEL)` """ -function updatePlot! end \ No newline at end of file +function updatePlot! end +# Note: The function implementation is found in `ext/VizProject.jl`. \ No newline at end of file