diff options
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -30,7 +30,8 @@ func main() { } vertices,vertex_normals = stl.toVertices() - // lock this program to one OS thread (details: https://golang.org/pkg/runtime/#LockOSThread) + // lock this program to one OS thread + // (details: https://golang.org/pkg/runtime/#LockOSThread) log.Println("Locking OS thread") runtime.LockOSThread() @@ -50,7 +51,8 @@ func main() { } func (args *cliArgs) read() { - flag.BoolVar(&args.debugOutput, "debug", false, "enable to print log output") + flag.BoolVar(&args.debugOutput, "debug", false, + "enable to print log output") flag.Parse() args.filePath = flag.Arg(0) } |