]> Cypherpunks.ru repositories - gostls13.git/commitdiff
path/filepath: fix typo in comment
authorIan Lance Taylor <iant@golang.org>
Thu, 7 Jul 2016 00:14:10 +0000 (17:14 -0700)
committerBrad Fitzpatrick <bradfitz@golang.org>
Thu, 7 Jul 2016 02:59:09 +0000 (02:59 +0000)
Change-Id: I0c76e8deae49c1149647de421503c5175028b948
Reviewed-on: https://go-review.googlesource.com/24781
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/path/filepath/path.go

index 1ddfbec36ea9db31a2be56d50735210d40bc24de..0dc559cdd67cf8128b170ceb7564a8cccd357df7 100644 (file)
@@ -222,7 +222,7 @@ func Ext(path string) string {
 // links.
 // If path is relative the result will be relative to the current directory,
 // unless one of the components is an absolute symbolic link.
-// EvalSymlinks call Clean on the result.
+// EvalSymlinks calls Clean on the result.
 func EvalSymlinks(path string) (string, error) {
        return evalSymlinks(path)
 }