1
0
mirror of https://github.com/golang/go synced 2024-11-22 01:24:42 -07:00

spell it with an "e"

R=rsc
http://go/go-review/1025037
This commit is contained in:
Ken Thompson 2009-11-10 15:05:15 -08:00
parent 8a902ed840
commit c90d392ce3

View File

@ -62,6 +62,7 @@ const (
O_NDELAY = O_NONBLOCK; // synonym for O_NONBLOCK
O_SYNC = syscall.O_SYNC; // open for synchronous I/O.
O_TRUNC = syscall.O_TRUNC; // if possible, truncate file when opened.
O_CREATE = O_CREAT; // create a new file if none exists.
)
// Open opens the named file with specified flag (O_RDONLY etc.) and perm, (0666 etc.)