@anchor{gtk-box-pack-start}
@deffn Procedure gtk-box-pack-start box child expand? fill? padding
-Adds @var{child} to @var{box}, packed with reference to the start of
-@var{box}, which can be a gtk-vbox or gtk-hbox. If @var{expand?}, the
-new child is positioned within a share of any extra space. If
-@var{fill?} (and @var{expand?}), the child is allocated the share of
-extra space. @var{Padding} is the space around the child,
+Adds @var{child} to @var{box} @emph{after} siblings previously packed
+with this procedure, and @emph{before} siblings previously packed with
+@bref{gtk-box-pack-end}. @var{Box} can be a gtk-vbox or gtk-hbox. If
+@var{expand?}, the new child is positioned within a share of any extra
+space. If @var{fill?} (and @var{expand?}), the child is allocated the
+share of extra space. @var{Padding} is the space around the child,
e.g. between it and its neighbors @emph{and} the edge of the box.
@end deffn
+@anchor{gtk-box-pack-end}
@deffn Procedure gtk-box-pack-end box child expand? fill? padding
-Just like @bref{gtk-box-pack-start}, except @var{child} is packed with
-reference to the end of @var{box}.
+Just like @bref{gtk-box-pack-start}, except @var{child} is packed
+@emph{before} siblings previously packed with this procedure,
+@emph{after} siblings packed with gtk-box-pack-start.
@end deffn
@deffn Class <gtk-vbox>
@deffn Procedure gtk-scrolled-window-set-placement window placement
@var{Placement} should be one of the symbols @code{top-left},
-@code{bottom-left}, @code{top-right} or @code{bottom-right}.
+@code{bottom-left}, @code{top-right} or @code{bottom-right}. This is
+the placement of the scrolled window, not the scrollbars. If the
+scrolled window is placed ``bottom left'', the scrollbars will appear
+above and to the right.
@end deffn
@node Scheme Widget, Fix Layout, Gtk Scrolled Window, API Reference