]> Cypherpunks repositories - gostls13.git/commitdiff
os: remove superfluous comments
authorTobias Klauser <tklauser@distanz.ch>
Wed, 2 May 2018 10:15:54 +0000 (12:15 +0200)
committerBrad Fitzpatrick <bradfitz@golang.org>
Wed, 2 May 2018 14:41:57 +0000 (14:41 +0000)
It's apparent from the file names or build tags to which OS the code in
question applies.

Change-Id: I628ee2bf1d29a6bc30ca5fa6f9eecf809e78a182
Reviewed-on: https://go-review.googlesource.com/110815
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/os/sys_bsd.go
src/os/sys_linux.go
src/os/sys_plan9.go

index 8ad5e21837100c395e3cc4cadb6cd70f00291d3e..78705c286d67fcc2f600ed9e3db61d117a4e8930 100644 (file)
@@ -4,9 +4,6 @@
 
 // +build darwin dragonfly freebsd nacl netbsd openbsd
 
-// os code shared between *BSD systems including OS X (Darwin)
-// and FreeBSD.
-
 package os
 
 import "syscall"
index 467127653a8b7efeef3560f5e219beba94237f9b..36a8a244555aa71e41978c2778190735c4bfca84 100644 (file)
@@ -2,8 +2,6 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-// Linux-specific
-
 package os
 
 import (
index 07a7905f4721fd4133e77c9e837eddf38ed0634f..40374eb242a39c2c242fc794370ca6a4ee291482 100644 (file)
@@ -2,8 +2,6 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-// Plan 9-specific
-
 package os
 
 func hostname() (name string, err error) {