summaryrefslogtreecommitdiffstats
path: root/lib/xdsconfig/fileconfig.go
diff options
context:
space:
mode:
authorSebastien Douheret <sebastien.douheret@iot.bzh>2018-01-10 09:06:52 +0100
committerSebastien Douheret <sebastien.douheret@iot.bzh>2018-01-10 09:25:51 +0100
commitdd877bc8168c1a87a9d05d36f42b333b861c6e7e (patch)
tree0c489720344e4e67ec56097ae0466a1aa2607470 /lib/xdsconfig/fileconfig.go
parent55976cdcd58ed3311090aeb9d371bff53c49dcc1 (diff)
Fixed go linter warnings.
Diffstat (limited to 'lib/xdsconfig/fileconfig.go')
-rw-r--r--lib/xdsconfig/fileconfig.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/xdsconfig/fileconfig.go b/lib/xdsconfig/fileconfig.go
index 46afc57..69467b4 100644
--- a/lib/xdsconfig/fileconfig.go
+++ b/lib/xdsconfig/fileconfig.go
@@ -173,12 +173,12 @@ func configFilenameGet(cfgFile string) (string, error) {
return path.Join(usr.HomeDir, ConfigDir, cfgFile), nil
}
-// FoldersConfigFilenameGet
+// FoldersConfigFilenameGet Return the FoldersConfig filename
func FoldersConfigFilenameGet() (string, error) {
return configFilenameGet(FoldersConfigFilename)
}
-// ServerDataFilenameGet
+// ServerDataFilenameGet Return the ServerData filename
func ServerDataFilenameGet() (string, error) {
return configFilenameGet(ServerDataFilename)
}