From 60d120f7b3b8381f5e7c68c8c1a32956f1bad3cd Mon Sep 17 00:00:00 2001 From: c-bata Date: Tue, 13 Feb 2018 23:24:49 +0900 Subject: [PATCH] Run goimports --- _example/live-prefix/main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_example/live-prefix/main.go b/_example/live-prefix/main.go index 6d30251..ed46295 100644 --- a/_example/live-prefix/main.go +++ b/_example/live-prefix/main.go @@ -8,7 +8,7 @@ import ( var LivePrefixState struct { LivePrefix string - IsEnable bool + IsEnable bool } func executor(in string) { @@ -33,7 +33,7 @@ func completer(in prompt.Document) []prompt.Suggest { } func changeLivePrefix() (string, bool) { - return LivePrefixState.LivePrefix , LivePrefixState.IsEnable + return LivePrefixState.LivePrefix, LivePrefixState.IsEnable } func main() { @@ -45,4 +45,4 @@ func main() { prompt.OptionTitle("live-prefix-example"), ) p.Run() -} \ No newline at end of file +}