From 638fe6d245bfb7a35c9217ccb34bc57eb2417d58 Mon Sep 17 00:00:00 2001 From: Jinay Jain <30903578+JinayJain@users.noreply.github.com> Date: Wed, 14 Oct 2020 08:52:07 -0400 Subject: [PATCH] Fix typo in grid layout documentation comment (#3061) --- src/layouts.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts.jl b/src/layouts.jl index 57c9c663..ff4d0041 100644 --- a/src/layouts.jl +++ b/src/layouts.jl @@ -230,7 +230,7 @@ end grid(args...; kw...) Create a grid layout for subplots. `args` specify the dimensions, e.g. -`grid(3,2, widths = (0.6,04))` creates a grid with three rows and two +`grid(3,2, widths = (0.6,0.4))` creates a grid with three rows and two columns of different width. """ grid(args...; kw...) = GridLayout(args...; kw...)