Skip to content

Commit 3e2f4cc

Browse files
felixonmarsjhermann
authored andcommitted
Correct typos in validate.py
1 parent f9a265c commit 3e2f4cc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/configobj/validate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -935,7 +935,7 @@ def is_boolean(value):
935935
except KeyError:
936936
raise VdtTypeError(value)
937937
# we do an equality test rather than an identity test
938-
# this ensures Python 2.2 compatibilty
938+
# this ensures Python 2.2 compatibility
939939
# and allows 0 and 1 to represent True and False
940940
if value == False:
941941
return False
@@ -1224,7 +1224,7 @@ def force_list(value, min=None, max=None):
12241224
trailing comma that turns a single value into a list.
12251225
12261226
You can optionally specify the minimum and maximum number of members.
1227-
A minumum of greater than one will fail if the user only supplies a
1227+
A minimum of greater than one will fail if the user only supplies a
12281228
string.
12291229
12301230
>>> vtor.check('force_list', ())

0 commit comments

Comments
 (0)