aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/algorithms/inputgen.py
diff options
context:
space:
mode:
Diffstat (limited to 'algorithms/inputgen.py')
-rw-r--r--algorithms/inputgen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/algorithms/inputgen.py b/algorithms/inputgen.py
index aeb4f29..998f1d6 100644
--- a/algorithms/inputgen.py
+++ b/algorithms/inputgen.py
@@ -20,7 +20,7 @@ def _gen_input_from(xs):
def gen_input_for_sorting(n, case=InputKind.AVERAGE):
if n < 0:
- raise ValueError('input length must not be a negative number')
+ raise ValueError('input length cannot be less than zero')
if case is InputKind.BEST:
return _gen_input_from(range(n))
elif case is InputKind.AVERAGE: