From: Francisco Souza Date: Thu, 8 Mar 2012 01:49:13 +0000 (+1100) Subject: io: minor change in io.WriteAt docs. X-Git-Tag: weekly.2012-03-13~110 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=686d699ec689ccfbea7bda2aabb0af2618810eb7;p=gostls13.git io: minor change in io.WriteAt docs. R=adg, bradfitz CC=golang-dev https://golang.org/cl/5787048 --- diff --git a/src/pkg/io/io.go b/src/pkg/io/io.go index 629b9fb75f..54bf159eb4 100644 --- a/src/pkg/io/io.go +++ b/src/pkg/io/io.go @@ -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) }