summaryrefslogtreecommitdiff
path: root/urwid/util.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/util.py
parent84b448a2ac8c9a91aaf935da1bad11cec28ac59f (diff)
downloadurwid-127ecfd29b51a5e72b87f70eaafb9fc0f6f2d870.tar.gz
fix lots of small typos
Diffstat (limited to 'urwid/util.py')
-rw-r--r--urwid/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urwid/util.py b/urwid/util.py
index 0560b5d..12becca 100644
--- a/urwid/util.py
+++ b/urwid/util.py
@@ -439,7 +439,7 @@ class MetaSuper(type):
def int_scale(val, val_range, out_range):
"""
Scale val in the range [0, val_range-1] to an integer in the range
- [0, out_range-1]. This implementaton uses the "round-half-up" rounding
+ [0, out_range-1]. This implementation uses the "round-half-up" rounding
method.
>>> "%x" % int_scale(0x7, 0x10, 0x10000)