From 577d434bc82325ff9fb5ca081b044a3068095d64 Mon Sep 17 00:00:00 2001 From: Sebastian Rollen <38324289+SebRollen@users.noreply.github.com> Date: Thu, 28 Mar 2019 09:54:23 -0400 Subject: [PATCH] Update `yaxis!` description Just fixing a small typo. The description for `yaxis!` used to read "Specify x axis attributes for an existing plot", changed to "Specify y axis attributes for an existing plot" --- src/shorthands.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shorthands.jl b/src/shorthands.jl index 5d240482..6f379a73 100644 --- a/src/shorthands.jl +++ b/src/shorthands.jl @@ -449,7 +449,7 @@ yflip!(flip::Bool = true; kw...) = plot!(; yflip = flip "Specify x axis attributes for an existing plot" xaxis!(args...; kw...) = plot!(; xaxis = args, kw...) -"Specify x axis attributes for an existing plot" +"Specify y axis attributes for an existing plot" yaxis!(args...; kw...) = plot!(; yaxis = args, kw...) xgrid!(args...; kw...) = plot!(; xgrid = args, kw...) ygrid!(args...; kw...) = plot!(; ygrid = args, kw...)