summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Gates <tim.gates@iress.com>2023-03-29 04:15:08 +1100
committerGitHub <noreply@github.com>2023-03-28 19:15:08 +0200
commit412cb0b9ebba9b6705b7c46e140bdfdf27928c2c (patch)
treeb4061811da899a0ad67444c9f004a4d39cc839c3
parent64830ef20edc4ee2ee7b63a0923b0d337ed41107 (diff)
downloadurwid-412cb0b9ebba9b6705b7c46e140bdfdf27928c2c.tar.gz
docs: fix simple typo, incompatable -> incompatible (#446)
There is a small typo in urwid/numedit.py. Should read `incompatible` rather than `incompatable`.
-rw-r--r--urwid/numedit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urwid/numedit.py b/urwid/numedit.py
index 61766e9..3152acb 100644
--- a/urwid/numedit.py
+++ b/urwid/numedit.py
@@ -122,7 +122,7 @@ class IntegerEdit(NumEdit):
>>> e.keypress(size, 'delete')
>>> e.keypress(size, '0')
>>> assert e.edit_text == "00FF"
- >>> # test exception on incompatable value for base
+ >>> # test exception on incompatible value for base
>>> e, size = IntegerEdit(u"", "10FG", base=16), (10,)
Traceback (most recent call last):
...