Skip to content

Commit

Permalink
Doc edits
Browse files Browse the repository at this point in the history
  • Loading branch information
npat-efault committed Oct 27, 2014
1 parent f6dd1e1 commit ba7908c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ if err != nil {
b := make([]byte, 10)
n, err := fd.Read(b)
if err != nil {
log.Fatal("Write failed:", err)
log.Fatal("Read failed:", err)
}
...
Expand Down
2 changes: 1 addition & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Typical usage:
b := make([]byte, 10)
n, err := fd.Read(b)
if err != nil {
log.Fatal("Write failed:", err)
log.Fatal("Read failed:", err)
}
...
Expand Down

0 comments on commit ba7908c

Please sign in to comment.