summaryrefslogtreecommitdiff
path: root/src/pkg/os/os_test.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-11-08 21:08:27 -0800
committerRuss Cox <rsc@golang.org>2009-11-08 21:08:27 -0800
commite240d9aa879a87390891d86c850097fac1b3aef4 (patch)
tree800c709e116670c847700e2196a812a4e38e7636 /src/pkg/os/os_test.go
parente98663c230a09ed469f67c43e4e9a7ea8a407737 (diff)
downloadgolang-e240d9aa879a87390891d86c850097fac1b3aef4.tar.gz
assorted cleanup
R=r, iant CC=go-dev http://go/go-review/1025024
Diffstat (limited to 'src/pkg/os/os_test.go')
-rw-r--r--src/pkg/os/os_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/os/os_test.go b/src/pkg/os/os_test.go
index 4601c45b9..832ce6083 100644
--- a/src/pkg/os/os_test.go
+++ b/src/pkg/os/os_test.go
@@ -511,7 +511,7 @@ func TestTime(t *testing.T) {
// A common failure mode on Darwin is to get 0, 0,
// because it returns the time in registers instead of
// filling in the structure passed to the system call.
- // TODO(rsc): Too bad the compiler doesn't know that
+ // Too bad the compiler doesn't know that
// 365.24*86400 is an integer.
sec, nsec, err := Time();
if sec < (2009-1970)*36524*864 {