From 8f6b42954bcddf7815561df79833b8fabeb8c6c0 Mon Sep 17 00:00:00 2001 From: Fabio B <4430543+f-bro@users.noreply.github.com> Date: Thu, 21 Dec 2023 17:30:15 +0100 Subject: [PATCH] Fix typo (#3502) --- src/makielayout/types.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/makielayout/types.jl b/src/makielayout/types.jl index 827026ec5f4..aa4c4d458ab 100644 --- a/src/makielayout/types.jl +++ b/src/makielayout/types.jl @@ -557,7 +557,7 @@ end The function `autolimits!` resets the value of `limits` to `(nothing, nothing)` and adjusts the axis limits according to the extents of the plots added to the axis. - The value of `limits` can be a four-element tuple `(xlow, xhigh, ylow, high)` where each value + The value of `limits` can be a four-element tuple `(xlow, xhigh, ylow, yhigh)` where each value can be a real number or `nothing`. It can also be a tuple `(x, y)` where `x` and `y` can be `nothing` or a tuple `(low, high)`. In all cases, `nothing` means that the respective limit values will be automatically determined.