From 7f005015c80472e56697d0e8b5abf9b59f9f0731 Mon Sep 17 00:00:00 2001 From: Igor Artasevych Date: Thu, 22 Oct 2020 10:00:45 +0300 Subject: [PATCH] Update altsrc/map_input_source.go Co-authored-by: Robert Liebowitz --- altsrc/map_input_source.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} }