mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-25 17:19:34 -05:00
fix sprintf formatter
This commit is contained in:
parent
15c89f00a2
commit
836e3e490a
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@ func validateIntegerGeqThan(threshold int) schema.SchemaValidateFunc {
|
|||
value := v.(int)
|
||||
if value < threshold {
|
||||
errors = append(errors, fmt.Errorf(
|
||||
"%q cannot be lower than %q", k, threshold))
|
||||
"%q cannot be lower than %d", k, threshold))
|
||||
}
|
||||
return
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue