aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2011-11-15 14:54:00 -0500
committerRuss Cox <rsc@golang.org>2011-11-15 14:54:00 -0500
commit3a6744d890c9a9f13ebe4b053969380383024cef (patch)
tree2f68c51b0ed3a71f30dc9630502921e847845f3c
parent86a6995a7e4cc7242b010642dc12f61488b5cddf (diff)
downloadgo-3a6744d890c9a9f13ebe4b053969380383024cef.tar.gz
go-3a6744d890c9a9f13ebe4b053969380383024cef.zip
os: fix comment per CL 5370091
Made the edit in the wrong client before submitting. TBR=r CC=golang-dev https://golang.org/cl/5374091
-rw-r--r--src/pkg/os/proc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/os/proc.go b/src/pkg/os/proc.go
index 0ef6e411c3..61545f4456 100644
--- a/src/pkg/os/proc.go
+++ b/src/pkg/os/proc.go
@@ -8,7 +8,7 @@ package os
import "syscall"
-// Args is the command-line arguments, starting with the program name.
+// Args hold the command-line arguments, starting with the program name.
var Args []string
// Getuid returns the numeric user id of the caller.