From: Rob Pike Date: Tue, 14 Jun 2011 01:49:33 +0000 (+1000) Subject: os: be explicit in the package comment that this package is for portable features... X-Git-Tag: weekly.2011-06-16~54 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=34e0725dec7eb94b909050ba1182f64f2803800c;p=gostls13.git os: be explicit in the package comment that this package is for portable features only. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4602058 --- diff --git a/src/pkg/os/file.go b/src/pkg/os/file.go index dff8fa862c..0e97e0bd93 100644 --- a/src/pkg/os/file.go +++ b/src/pkg/os/file.go @@ -4,6 +4,8 @@ // Package os provides a platform-independent interface to operating system // functionality. The design is Unix-like. +// The os interface is intended to be uniform across all operating systems. +// Features not generally available appear in the system-specific package syscall. package os import (