*: Failed -> failed in errors

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca 2016-09-18 11:08:29 +02:00
parent 5e672974ff
commit 59aae8cdb5
No known key found for this signature in database
GPG key ID: B2BEAD150DE936B9
2 changed files with 12 additions and 12 deletions

View file

@ -16,7 +16,7 @@ import (
func getGPRCVersion() (string, error) {
_, file, _, ok := runtime.Caller(0)
if !ok {
return "", errors.New("Failed to recover the caller information.")
return "", errors.New("failed to recover the caller information.")
}
ocidRoot := filepath.Dir(filepath.Dir(file))