2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-29 07:00:49 +00:00

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

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%")
}
}
}