check: Tweak subset percentage over 100% error message

This commit is contained in:
Michael Eischer 2020-11-15 18:12:36 +01:00
parent 15c537f9db
commit caac38ed27
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ func checkFlags(opts CheckOptions) error {
if percentage <= 0.0 || percentage > 100.0 {
return errors.Fatal(
"check flag --read-data-subset=n% n must be above 0.0% and 100.0%")
"check flag --read-data-subset=n% n must be above 0.0% and at most 100.0%")
}
}
}