aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2016-07-06 17:14:10 -0700
committerBrad Fitzpatrick <bradfitz@golang.org>2016-07-07 02:59:09 +0000
commitdf7c159f06ab6d6c7ac6c953e491f8900f40d282 (patch)
tree1be6ec0e6f551178c68df3a03a7eb8d08bb5d173
parent94477121bd1a758a70393773c6ae40c58c54f005 (diff)
downloadgo-df7c159f06ab6d6c7ac6c953e491f8900f40d282.tar.gz
go-df7c159f06ab6d6c7ac6c953e491f8900f40d282.zip
path/filepath: fix typo in comment
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>
-rw-r--r--src/path/filepath/path.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path/filepath/path.go b/src/path/filepath/path.go
index 1ddfbec36e..0dc559cdd6 100644
--- a/src/path/filepath/path.go
+++ b/src/path/filepath/path.go
@@ -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)
}