From df7c159f06ab6d6c7ac6c953e491f8900f40d282 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Wed, 6 Jul 2016 17:14:10 -0700 Subject: [PATCH] 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 --- src/path/filepath/path.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) } -- 2.50.0