api: ContainerCreate: lowercase ErrEmptyConfig

Signed-off-by: Albin Kerouanton <albinker@gmail.com>
This commit is contained in:
Albin Kerouanton 2023-10-25 17:34:20 +02:00
parent 91eee33f62
commit 44a25f31a8
No known key found for this signature in database
GPG key ID: 630B8E1DCBDB1864

View file

@ -32,7 +32,7 @@ const (
// ErrConflictUTSHostname conflict between the hostname and the UTS mode
ErrConflictUTSHostname validationError = "conflicting options: hostname and the UTS mode"
// ErrEmptyConfig when container config is nil
ErrEmptyConfig validationError = "Config cannot be empty in order to create a container"
ErrEmptyConfig validationError = "config cannot be empty in order to create a container"
)
type validationError string