From f91eca01659e1ea8cbf4c8e6adac1e97c9d42fb9 Mon Sep 17 00:00:00 2001 From: Henri Drake Date: Tue, 4 Jun 2024 09:06:29 -0700 Subject: [PATCH] Corrects isovalue/isorange docstrings in basic volume plot It seems like the docstrings for the `isovalue` and `isorange` arguments were inadvertently swapped in the docstring for the `volume` recipe. This PR just swaps them back. --- MakieCore/src/basic_plots.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MakieCore/src/basic_plots.jl b/MakieCore/src/basic_plots.jl index c4d413692fa..9ad23fca395 100644 --- a/MakieCore/src/basic_plots.jl +++ b/MakieCore/src/basic_plots.jl @@ -269,9 +269,9 @@ Available algorithms are: ) begin "Sets the volume algorithm that is used." algorithm = :mip - "Sets the range of values picked up by the IsoValue algorithm." - isovalue = 0.5 "Sets the target value for the IsoValue algorithm." + isovalue = 0.5 + "Sets the range of values picked up by the IsoValue algorithm." isorange = 0.05 "Sets whether the volume data should be sampled with interpolation." interpolate = true