From e9bb7d36c0606a2c422dffe30db7d628ebeb9302 Mon Sep 17 00:00:00 2001 From: Anthony Fok Date: Thu, 1 Aug 2019 02:10:48 -0600 Subject: [PATCH] =?UTF-8?q?internal/gopathwalk:=20fix=20typo=20("nonexista?= =?UTF-8?q?nt"=20=E2=86=92=20"nonexistent")?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ie127474e5d1e1d71177e0e38d8a4cba2ce415db3 Reviewed-on: https://go-review.googlesource.com/c/tools/+/188497 Run-TryBot: Ian Lance Taylor Reviewed-by: Ian Lance Taylor --- internal/gopathwalk/walk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/gopathwalk/walk.go b/internal/gopathwalk/walk.go index 04bb96a362..9c07e4c2d2 100644 --- a/internal/gopathwalk/walk.go +++ b/internal/gopathwalk/walk.go @@ -67,7 +67,7 @@ func Walk(roots []Root, add func(root Root, dir string), opts Options) { func walkDir(root Root, add func(Root, string), opts Options) { if _, err := os.Stat(root.Path); os.IsNotExist(err) { if opts.Debug { - log.Printf("skipping nonexistant directory: %v", root.Path) + log.Printf("skipping nonexistent directory: %v", root.Path) } return }