commit | 1f49bf54632d764fb201c185fc576511d73626d8 | [log] [tgz] |
---|---|---|
author | Matteo Scandolo <matteo.scandolo@gmail.com> | Tue Nov 20 13:56:45 2018 -0800 |
committer | Matteo Scandolo <matteo.scandolo@gmail.com> | Tue Nov 20 14:19:39 2018 -0800 |
tree | 9de62285e4fd1cfb28ab8831c172aaf33a6d447f | |
parent | 5be70a1ee9889d8d5c90b30aa7bfbc99a9cb6e9d [diff] [blame] |
Migrating from govendor to go dep Change-Id: I08f2863450e141f1fed0bdef4b9ba64157c7289d
diff --git a/vendor/github.com/kelseyhightower/envconfig/usage.go b/vendor/github.com/kelseyhightower/envconfig/usage.go index 4870237..1846353 100644 --- a/vendor/github.com/kelseyhightower/envconfig/usage.go +++ b/vendor/github.com/kelseyhightower/envconfig/usage.go
@@ -56,6 +56,12 @@ switch t.Kind() { case reflect.Array, reflect.Slice: return fmt.Sprintf("Comma-separated list of %s", toTypeDescription(t.Elem())) + case reflect.Map: + return fmt.Sprintf( + "Comma-separated list of %s:%s pairs", + toTypeDescription(t.Key()), + toTypeDescription(t.Elem()), + ) case reflect.Ptr: return toTypeDescription(t.Elem()) case reflect.Struct: