Fix typo in grid layout documentation comment (#3061)

This commit is contained in:
Jinay Jain 2020-10-14 08:52:07 -04:00 committed by GitHub
parent 3f05dc3570
commit 638fe6d245
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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...)