Skip to content

Commit 9f51e90

Browse files
committed
Fix by golint
1 parent 2f76189 commit 9f51e90

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

goby.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"github.com/pkg/profile"
2020
)
2121

22-
const Version string = vm.Version
22+
const version string = vm.Version
2323

2424
func main() {
2525
profileCPUOptionPtr := flag.Bool("profile-cpu", false, "Profile cpu usage")
@@ -31,7 +31,7 @@ func main() {
3131
flag.Parse()
3232

3333
if *interactiveOptionPtr {
34-
igb.StartIgb(Version)
34+
igb.StartIgb(version)
3535
os.Exit(0)
3636
}
3737

@@ -44,7 +44,7 @@ func main() {
4444
}
4545

4646
if *versionOptionPtr {
47-
fmt.Println(Version)
47+
fmt.Println(version)
4848
os.Exit(0)
4949
}
5050

0 commit comments

Comments
 (0)