diff --git a/altsrc/map_input_source.go b/altsrc/map_input_source.go index b144cf64c0..117461f5a0 100644 --- a/altsrc/map_input_source.go +++ b/altsrc/map_input_source.go @@ -16,7 +16,7 @@ type MapInputSource struct { valueMap map[interface{}]interface{} } -//NewMapInputSource create a new MapInputSource type +// NewMapInputSource creates a new MapInputSource for implementing custom input sources. func NewMapInputSource(file string, valueMap map[interface{}]interface{}) *MapInputSource { return &MapInputSource{file: file, valueMap: valueMap} }