From 46c4071984e857a90aa01aff0485a3955626ee3a Mon Sep 17 00:00:00 2001 From: Jinay Jain Date: Tue, 13 Oct 2020 22:39:18 -0400 Subject: [PATCH] Fix typo in grid layout documentation comment --- 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...)