Fix typo in grid layout documentation comment

This commit is contained in:
Jinay Jain 2020-10-13 22:39:18 -04:00
parent c15483d593
commit 46c4071984

View File

@ -230,7 +230,7 @@ end
grid(args...; kw...) grid(args...; kw...)
Create a grid layout for subplots. `args` specify the dimensions, e.g. 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. columns of different width.
""" """
grid(args...; kw...) = GridLayout(args...; kw...) grid(args...; kw...) = GridLayout(args...; kw...)