From 686d699ec689ccfbea7bda2aabb0af2618810eb7 Mon Sep 17 00:00:00 2001 From: Francisco Souza Date: Thu, 8 Mar 2012 12:49:13 +1100 Subject: [PATCH] io: minor change in io.WriteAt docs. R=adg, bradfitz CC=golang-dev https://golang.org/cl/5787048 --- src/pkg/io/io.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) } -- 2.50.0