From 3a6744d890c9a9f13ebe4b053969380383024cef Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Tue, 15 Nov 2011 14:54:00 -0500 Subject: [PATCH] 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 --- src/pkg/os/proc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.