summaryrefslogtreecommitdiff
path: root/urwid/decoration.py
diff options
context:
space:
mode:
authorPaul Ivanov <pi@berkeley.edu>2014-02-20 23:40:24 -0800
committerPaul Ivanov <pi@berkeley.edu>2014-02-21 08:40:33 -0800
commit127ecfd29b51a5e72b87f70eaafb9fc0f6f2d870 (patch)
tree35d8b529ca38f0b992e5103083f1de8ffcdd7e6c /urwid/decoration.py
parent84b448a2ac8c9a91aaf935da1bad11cec28ac59f (diff)
downloadurwid-127ecfd29b51a5e72b87f70eaafb9fc0f6f2d870.tar.gz
fix lots of small typos
Diffstat (limited to 'urwid/decoration.py')
-rwxr-xr-xurwid/decoration.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/urwid/decoration.py b/urwid/decoration.py
index b6a5ea9..731eb91 100755
--- a/urwid/decoration.py
+++ b/urwid/decoration.py
@@ -310,7 +310,7 @@ class AttrWrap(AttrMap):
"""
Call getattr on wrapped widget. This has been the longstanding
behaviour of AttrWrap, but is discouraged. New code should be
- using AttrMap and .base_widget or .original_widget instad.
+ using AttrMap and .base_widget or .original_widget instead.
"""
return getattr(self._original_widget, name)
@@ -447,7 +447,7 @@ class Padding(WidgetDecoration):
:param left: a fixed number of columns to pad on the left
:type left: int
- :param right: a fixed number of columns to pad on thr right
+ :param right: a fixed number of columns to pad on the right
:type right: int
Clipping Mode: (width= ``'clip'``)
@@ -542,7 +542,7 @@ class Padding(WidgetDecoration):
def _get_width(self):
"""
- Return the padding widthment setting.
+ Return the padding width.
"""
return simplify_width(self._width_type, self._width_amount)
def _set_width(self, width):