1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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 5aa44cdf13
commit b8c45c3a57
No known key found for this signature in database
GPG key ID: 083CC6FD6EB699A3

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)
}
}