Fixing a small typo in compose loader package

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2017-03-20 15:39:57 +01:00
parent 6e24fc3f58
commit 4826a5c3af
1 changed files with 1 additions and 1 deletions

View File

@ -561,7 +561,7 @@ func transformServiceSecret(data interface{}) (interface{}, error) {
case map[string]interface{}:
return data, nil
default:
return data, fmt.Errorf("invalid type %T for external", value)
return data, fmt.Errorf("invalid type %T for secret", value)
}
}