1
0
mirror of https://github.com/golang/go synced 2024-11-21 23:54:40 -07:00

io: minor change in io.WriteAt docs.

R=adg, bradfitz
CC=golang-dev
https://golang.org/cl/5787048
This commit is contained in:
Francisco Souza 2012-03-08 12:49:13 +11:00 committed by Rob Pike
parent 5827dd052c
commit 686d699ec6

View File

@ -179,7 +179,7 @@ type ReaderAt interface {
// seek offset.
//
// Clients of WriteAt can execute parallel WriteAt calls on the same
// destination if the ranges are not overlapping.
// destination if the ranges do not overlap.
type WriterAt interface {
WriteAt(p []byte, off int64) (n int, err error)
}