summaryrefslogtreecommitdiff
path: root/src/pkg/os/file_windows.go
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2010-09-15 15:38:16 -0700
committerRobert Griesemer <gri@golang.org>2010-09-15 15:38:16 -0700
commit3e2f048688ad8f8947b086f09322bb137e9bd86d (patch)
tree69f6abc01890d4f9dbfa1ea78d75b67120740b87 /src/pkg/os/file_windows.go
parent777fa5c4614f29eb0c852f925e7da2bbce1e67f0 (diff)
downloadgo-3e2f048688ad8f8947b086f09322bb137e9bd86d.tar.gz
os: error in documentation
R=r CC=golang-dev http://codereview.appspot.com/2225041
Diffstat (limited to 'src/pkg/os/file_windows.go')
-rw-r--r--src/pkg/os/file_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/os/file_windows.go b/src/pkg/os/file_windows.go
index cb2ac987c..e26c138c3 100644
--- a/src/pkg/os/file_windows.go
+++ b/src/pkg/os/file_windows.go
@@ -110,7 +110,7 @@ func (file *File) Stat() (fi *FileInfo, err Error) {
// Readdir reads the contents of the directory associated with file and
// returns an array of up to count FileInfo structures, as would be returned
-// by Stat, in directory order. Subsequent calls on the same file will yield
+// by Lstat, in directory order. Subsequent calls on the same file will yield
// further FileInfos.
// A negative count means to read until EOF.
// Readdir returns the array and an Error, if any.