@@ -421,7 +421,7 @@ class Widget(Tag, EventSource):
421421 Widget can be used as generic container. You can add children by the append(value, key) function.
422422 Widget can be arranged in absolute positioning (assigning style['top'] and style['left'] attributes to the children
423423 or in a simple auto-alignment.
424- You can decide the horizontal or vertical arrangement by the function set_layout_horientation (layout_orientation)
424+ You can decide the horizontal or vertical arrangement by the function set_layout_orientation (layout_orientation)
425425 passing as parameter Widget.LAYOUT_HORIZONTAL or Widget.LAYOUT_VERTICAL.
426426
427427 Tips:
@@ -1009,7 +1009,8 @@ def set_row_gap(self, value):
10091009
10101010
10111011class HBox (Widget ):
1012- """It contains widget automatically aligning them horizontally.
1012+ """The purpose of this widget is to automatically horizontally aligning
1013+ the widgets that are appended to it.
10131014 Does not permit children absolute positioning.
10141015
10151016 In order to add children to this container, use the append(child, key) function.
@@ -1069,7 +1070,8 @@ def append(self, value, key=''):
10691070
10701071
10711072class VBox (HBox ):
1072- """It contains widget automatically aligning them vertically.
1073+ """The purpose of this widget is to automatically vertically aligning
1074+ the widgets that are appended to it.
10731075 Does not permit children absolute positioning.
10741076
10751077 In order to add children to this container, use the append(child, key) function.
0 commit comments