Skip to content

Commit

Permalink
spell it with an "e"
Browse files Browse the repository at this point in the history
R=rsc
http://go/go-review/1025037
  • Loading branch information
ken committed Nov 10, 2009
1 parent 8a902ed commit c90d392
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/pkg/os/file.go
Expand Up @@ -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.)
Expand Down

4 comments on commit c90d392

@dotancohen
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ken, you waited 25 long years to make this commit!

@bassu
Copy link

@bassu bassu commented on c90d392 Jan 17, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sometimes it takes a very long time before you get a second chance 😜

@sdboyer
Copy link
Member

@sdboyer sdboyer commented on c90d392 Mar 3, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❤️

@nbpalomino
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Recently came to this about UNIX via http://www.philipotoole.com/some-favourite-programming-books/

Lord Ken you rock!

Please sign in to comment.