From fbce00a0b19628abd2d0c8b50c1cfa6b87cee3ce Mon Sep 17 00:00:00 2001 From: Steve Date: Tue, 21 Feb 2017 17:59:16 -0800 Subject: fix minor typo, un-export & reduce length of function Aside from the minor spelling fix, I want to shorten the function name and think it would be best for it to be unexported. --- cmd/ponzu/paths.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cmd') diff --git a/cmd/ponzu/paths.go b/cmd/ponzu/paths.go index 4bd4d41..0ab2b06 100644 --- a/cmd/ponzu/paths.go +++ b/cmd/ponzu/paths.go @@ -2,9 +2,9 @@ package main import "runtime" -// GetPonzuServerBuildOutputFileName returns de correct -// ponzu-server file name based on the host Operating System -func GetPonzuServerBuildOutputFileName() string { +// buildOutputName returns the correct ponzu-server file name +// based on the host Operating System +func buildOutputName() string { if runtime.GOOS == "windows" { return "ponzu-server.exe" } -- cgit v1.2.3