aboutsummaryrefslogtreecommitdiff
path: root/entries/funemy
diff options
context:
space:
mode:
Diffstat (limited to 'entries/funemy')
-rwxr-xr-xentries/funemy/z3/z3fib.sh2
-rwxr-xr-xentries/funemy/z3/z4fib.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/entries/funemy/z3/z3fib.sh b/entries/funemy/z3/z3fib.sh
index 07ab418..e96226f 100755
--- a/entries/funemy/z3/z3fib.sh
+++ b/entries/funemy/z3/z3fib.sh
@@ -15,7 +15,7 @@ else
fi
if [ "$1" -lt "0" ]; then
- echo "Argument must be larger than 0."
+ echo "Argument must be larger or equal to 0."
exit 1
fi
diff --git a/entries/funemy/z3/z4fib.sh b/entries/funemy/z3/z4fib.sh
index b7488e4..983a752 100755
--- a/entries/funemy/z3/z4fib.sh
+++ b/entries/funemy/z3/z4fib.sh
@@ -16,7 +16,7 @@ else
fi
if [ "$1" -lt "0" ]; then
- echo "Argument must be larger than 0."
+ echo "Argument must be larger or equal to 0."
exit 1
fi