From 8bd76ee4bd6613b70a28eec09dcb360877372fb7 Mon Sep 17 00:00:00 2001 From: Benoit Pasquier <4486578+briochemc@users.noreply.github.com> Date: Sat, 6 Feb 2021 10:39:15 +1100 Subject: [PATCH] Fix typos in plot docstring --- src/plot.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plot.jl b/src/plot.jl index 73555d3b..ae48d907 100644 --- a/src/plot.jl +++ b/src/plot.jl @@ -43,8 +43,8 @@ The main plot command. Use `plot` to create a new plot object, and `plot!` to ad There are lots of ways to pass in data, and lots of keyword arguments... just try it and it will likely work as expected. When you pass in matrices, it splits by columns. To see the list of available attributes, use the `plotattr([attr])` -function, where `attr` is the symbol `:Series:`, `:Subplot:`, `:Plot` or `:Axis`. Pass any attribute to `plotattr` -as a String to look up its docstring; e.g. `plotattr("seriestype")`. +function, where `attr` is the symbol `:Series`, `:Subplot`, `:Plot`, or `:Axis`. Pass any attribute to `plotattr` +as a String to look up its docstring, e.g., `plotattr("seriestype")`. """ function plot(args...; kw...) @nospecialize @@ -218,4 +218,4 @@ function plot!(sp::Subplot, args...; kw...) @nospecialize plt = sp.plt plot!(plt, args...; kw..., subplot = findfirst(isequal(sp), plt.subplots)) -end \ No newline at end of file +end