diff options
author | Steve <nilslice@gmail.com> | 2017-02-21 17:59:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-21 17:59:16 -0800 |
commit | fbce00a0b19628abd2d0c8b50c1cfa6b87cee3ce (patch) | |
tree | 9ed6e440588d9c82a110d0b7ca8237539f3d0741 /cmd/ponzu/paths.go | |
parent | 4125958a217577ea5c83d7bb9b24804e90777092 (diff) |
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.
Diffstat (limited to 'cmd/ponzu/paths.go')
-rw-r--r-- | cmd/ponzu/paths.go | 6 |
1 files changed, 3 insertions, 3 deletions
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" } |