1
0
mirror of https://github.com/golang/go synced 2024-11-22 17:54:45 -07:00

cmd/go: Update documentation of go run to match current behaviour.

Fixes #5511.

R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/9530043
This commit is contained in:
Dominik Honnef 2013-05-18 19:22:30 +08:00 committed by Shenghou Ma
parent b25a53acd7
commit 70f3b6097b
2 changed files with 0 additions and 2 deletions

View File

@ -370,7 +370,6 @@ Usage:
go run [build flags] gofiles... [arguments...]
Run compiles and runs the main package comprising the named Go source files.
If no files are named, it compiles and runs all non-test Go source files.
For more about build flags, see 'go help build'.

View File

@ -16,7 +16,6 @@ var cmdRun = &Command{
Short: "compile and run Go program",
Long: `
Run compiles and runs the main package comprising the named Go source files.
If no files are named, it compiles and runs all non-test Go source files.
For more about build flags, see 'go help build'.