From: Ian Lance Taylor Date: Thu, 7 Jul 2016 00:14:10 +0000 (-0700) Subject: path/filepath: fix typo in comment X-Git-Tag: go1.7rc1~5 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=df7c159f06ab6d6c7ac6c953e491f8900f40d282;p=gostls13.git path/filepath: fix typo in comment Change-Id: I0c76e8deae49c1149647de421503c5175028b948 Reviewed-on: https://go-review.googlesource.com/24781 Run-TryBot: Ian Lance Taylor TryBot-Result: Gobot Gobot Reviewed-by: Brad Fitzpatrick --- 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) }