From: Sanjay Menakuru Date: Fri, 24 Feb 2012 11:42:16 +0000 (+1100) Subject: os: fix minor typo X-Git-Tag: weekly.2012-03-04~165 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=27e07a2666ab8a699de280ac7dd94d24a2fb5e44;p=gostls13.git os: fix minor typo R=golang-dev, r CC=golang-dev https://golang.org/cl/5697051 --- diff --git a/src/pkg/os/file.go b/src/pkg/os/file.go index 1c3d0172d3..4acf35d675 100644 --- a/src/pkg/os/file.go +++ b/src/pkg/os/file.go @@ -25,7 +25,7 @@ // open file.go: no such file or directory // // The file's data can then be read into a slice of bytes. Read and -// Write take their byte counts from the length of the artument slice. +// Write take their byte counts from the length of the argument slice. // // data := make([]byte, 100) // count, err := file.Read(data)