aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/os/error_plan9.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/os/error_plan9.go')
-rw-r--r--libgo/go/os/error_plan9.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/libgo/go/os/error_plan9.go b/libgo/go/os/error_plan9.go
index 8f005ef..3c727b2 100644
--- a/libgo/go/os/error_plan9.go
+++ b/libgo/go/os/error_plan9.go
@@ -17,10 +17,6 @@ type SyscallError struct {
func (e *SyscallError) Error() string { return e.Syscall + ": " + e.Err }
-// Note: If the name of the function NewSyscallError changes,
-// pkg/go/doc/doc.go should be adjusted since it hardwires
-// this name in a heuristic.
-
// NewSyscallError returns, as an error, a new SyscallError
// with the given system call name and error details.
// As a convenience, if err is nil, NewSyscallError returns nil.