fix multiple typos

This commit is contained in:
ml
2021-09-28 02:24:43 +02:00
parent adff4a75ad
commit a2441a256b
3 changed files with 10 additions and 10 deletions

View File

@@ -30,7 +30,7 @@ func validateBandwidthIsReasonable(rsrc *resource.Quantity) error {
return fmt.Errorf("resource is unreasonably small (< 1kbit)")
}
if rsrc.Value() > maxRsrc.Value() {
return fmt.Errorf("resoruce is unreasonably large (> 1Pbit)")
return fmt.Errorf("resource is unreasonably large (> 1Pbit)")
}
return nil
}