]> Cypherpunks repositories - gostls13.git/commitdiff
io: minor change in io.WriteAt docs.
authorFrancisco Souza <franciscossouza@gmail.com>
Thu, 8 Mar 2012 01:49:13 +0000 (12:49 +1100)
committerRob Pike <r@golang.org>
Thu, 8 Mar 2012 01:49:13 +0000 (12:49 +1100)
R=adg, bradfitz
CC=golang-dev
https://golang.org/cl/5787048

src/pkg/io/io.go

index 629b9fb75feb1f6ebcc2c1af7bfdf22de7496144..54bf159eb4112442607d021e514a0ed73b831950 100644 (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)
 }