From 14611d2fd9fe5f3628a40bfd5b8c21a0aba21467 Mon Sep 17 00:00:00 2001 From: yuu26 Date: Fri, 20 Oct 2017 14:34:48 +0900 Subject: [PATCH] Fix typo in config/jsonloader.go (#517) --- config/jsonloader.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/jsonloader.go b/config/jsonloader.go index a3bb5432..dd17331f 100644 --- a/config/jsonloader.go +++ b/config/jsonloader.go @@ -23,7 +23,7 @@ import "fmt" type JSONLoader struct { } -// Load load the configuraiton JSON file specified by path arg. +// Load load the configuration JSON file specified by path arg. func (c JSONLoader) Load(path, sudoPass, keyPass string) (err error) { return fmt.Errorf("Not implement yet") }