1
0
mirror of https://github.com/golang/go synced 2024-11-24 21:10:04 -07:00

os: fix minor typo

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5697051
This commit is contained in:
Sanjay Menakuru 2012-02-24 22:42:16 +11:00 committed by Rob Pike
parent 832dcecc99
commit 27e07a2666

View File

@ -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)