@@ -182,7 +182,7 @@ the modern themed widget set and API::
182182 as argument names; however, calling :meth: `winfo_parent ` returns a
183183 string of the widget name whereas :attr: `master ` returns the object.
184184 *parent */*child * reflects the tree-like relationship while
185- *master */*slave * reflects the container structure.
185+ *container */*child widget * reflects the geometry management structure.
186186
187187 .. attribute :: children
188188
@@ -644,8 +644,8 @@ used less commonly, and we do not cover here), the packer takes qualitative
644644relationship specification - *above *, *to the left of *, *filling *, etc - and
645645works everything out to determine the exact placement coordinates for you.
646646
647- The size of any *master * widget is determined by the size of the "slave widgets"
648- inside. The packer is used to control where slave widgets appear inside the
647+ The size of any *parent * widget is determined by the size of the "child widgets"
648+ inside. The packer is used to control where child widgets appear inside the
649649master into which they are packed. You can pack widgets into frames, and frames
650650into other frames, in order to achieve the kind of layout you desire.
651651Additionally, the arrangement is dynamically adjusted to accommodate incremental
@@ -673,7 +673,7 @@ For more extensive information on the packer and the options that it can take,
673673see the man pages and page 183 of John Ousterhout's book.
674674
675675anchor
676- Anchor type. Denotes where the packer is to place each slave in its parcel.
676+ Anchor type. Denotes where the packer is to place each child widget in its parcel.
677677
678678expand
679679 Boolean, ``0 `` or ``1 ``.
@@ -682,10 +682,10 @@ fill
682682 Legal values: ``'x' ``, ``'y' ``, ``'both' ``, ``'none' ``.
683683
684684ipadx and ipady
685- A distance - designating internal padding on each side of the slave widget.
685+ A distance - designating internal padding on each side of the child widget.
686686
687687padx and pady
688- A distance - designating external padding on each side of the slave widget.
688+ A distance - designating external padding on each side of the child widget.
689689
690690side
691691 Legal values are: ``'left' ``, ``'right' ``, ``'top' ``, ``'bottom' ``.
0 commit comments