Skip to content
This repository was archived by the owner on Jul 13, 2021. It is now read-only.

Commit 27897d3

Browse files
Update layouting.jl
Fixed the docstrings for `vbox` and `hbox`.
1 parent c9e7beb commit 27897d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/layouting/layouting.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,15 +176,15 @@ ispixelcam(x) = false
176176
"""
177177
vbox(scenes...; parent = Scene(clear = false), kwargs...)
178178
179-
Lay the given Scenes out on the vertical axis. For example, two Scenes `vbox`ed
179+
Attach the given Scenes together on the vertical axis. For example, two Scenes `vbox`ed
180180
will be placed side-by-side.
181181
"""
182182
vbox(plots::Transformable...; kw_args...) = vbox([plots...]; kw_args...)
183183
"""
184184
hbox(scenes...; parent = Scene(clear = false), kwargs...)
185185
186-
Lay the given Scenes out on the horizonral axis. For example, two Scenes `vbox`ed
187-
will be placed side-by-side.
186+
Attach the given Scenes together on the horizontal axis. For example, two Scenes `hbox`ed
187+
will be placed one on top of the other.
188188
"""
189189
hbox(plots::Transformable...; kw_args...) = hbox([plots...]; kw_args...)
190190

0 commit comments

Comments
 (0)