diff options
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -139,7 +139,7 @@ func main() { mxp := runtime.GOMAXPROCS(0) if mxp < 4 && os.Getenv("GOMAXPROCS") == "" { // On a 2-core machine, setting maxprocs to 4 gives 10% better performance. - // But don't override an explicitely set GOMAXPROCS env variable. + // But don't override an explicitly set GOMAXPROCS env variable. runtime.GOMAXPROCS(4) } // mount(1) unsets PATH. Since exec.Command does not handle this case, we set |