From e89fb0cbe88821d1c42889edfcf9e49a6105c67d Mon Sep 17 00:00:00 2001 From: Maciek Sakrejda Date: Sat, 4 May 2013 12:14:25 -0700 Subject: [PATCH] Typo fix --- examples/reading-files/reading-files.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/reading-files/reading-files.go b/examples/reading-files/reading-files.go index 918c612..c6cbdaf 100644 --- a/examples/reading-files/reading-files.go +++ b/examples/reading-files/reading-files.go @@ -34,7 +34,7 @@ func main() { f, err := os.Open("/tmp/dat") // Read some bytes from the beginning of the file. - // Allow up to 5 to be read but also not how many + // Allow up to 5 to be read but also note how many // actually were read. b1 := make([]byte, 5) n1, err := f.Read(b1)