summaryrefslogtreecommitdiff
path: root/urwid/container.py
diff options
context:
space:
mode:
authorIan Ward <ian@excess.org>2014-02-21 11:45:54 -0500
committerIan Ward <ian@excess.org>2014-02-21 11:45:54 -0500
commit28cbfcc56f8018c35457a19e409fd1cc91221f97 (patch)
treea4f77a1419b41596c38217660715a5a79ace8acc /urwid/container.py
parenta3263e13f10673463cd5e0ae620f733ee4ae6ddb (diff)
parentfc9fc20f659804aea5ccd39c331c06ff6f96c255 (diff)
downloadurwid-28cbfcc56f8018c35457a19e409fd1cc91221f97.tar.gz
Merge pull request #55 from ivanov/fix-typos
Fix a bunch of typos
Diffstat (limited to 'urwid/container.py')
-rwxr-xr-xurwid/container.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/urwid/container.py b/urwid/container.py
index 69a6110..aa81614 100755
--- a/urwid/container.py
+++ b/urwid/container.py
@@ -980,7 +980,7 @@ class Frame(Widget, WidgetContainerMixin):
This object may be used to read or update the contents of the Frame.
- The values are similar to the the list-like .contents objects used
+ The values are similar to the list-like .contents objects used
in other containers with (:class:`Widget`, options) tuples, but are
constrained to keys for each of the three usual parts of a Frame.
When other keys are used a :exc:`KeyError` will be raised.
@@ -1724,7 +1724,7 @@ class Columns(Widget, WidgetContainerMixin, WidgetContainerListContentsMixin):
are treated as box widgets, and *box_columns* is ignored.
If the Columns widget is treated as a flow widget then the rows
- are calcualated as the largest rows() returned from all columns
+ are calculated as the largest rows() returned from all columns
except the ones listed in *box_columns*. The box widgets in
*box_columns* will be displayed with this calculated number of rows,
filling the full height.
@@ -1972,7 +1972,7 @@ class Columns(Widget, WidgetContainerMixin, WidgetContainerListContentsMixin):
raise IndexError, "No Columns child widget at position %s" % (position,)
self.contents.focus = position
focus_position = property(_get_focus_position, _set_focus_position, doc="""
- index of child widget in focus. Raises IndexError if read when
+ index of child widget in focus. Raises :exc:`IndexError` if read when
Columns is empty, or when set to an invalid index.
""")