From 3e755cb7958852dd09e45b78a242ef3d4132aef2 Mon Sep 17 00:00:00 2001 From: Jean de Klerk Date: Fri, 20 Sep 2019 10:41:38 -0600 Subject: [PATCH] s/because/before/ --- Resolving-Problems-From-Modified-Module-Path.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resolving-Problems-From-Modified-Module-Path.md b/Resolving-Problems-From-Modified-Module-Path.md index 1f0c7b5d..dd532e9a 100644 --- a/Resolving-Problems-From-Modified-Module-Path.md +++ b/Resolving-Problems-From-Modified-Module-Path.md @@ -11,7 +11,7 @@ go: github.com/golang/lint@v0.0.0-20190313153728-d0100b6bd8b3: parsing go.mod: u Exit code 1 ``` -`golang.org/x/lint` is a module whose git repository and module name used to be `github.com/golang/lint` because migrating to the git repo `golang.org/x/lint` and renaming its module name to `golang.org/x/lint`. The Go tool currently stumbles trying to understand the old module name at the new git repository: [golang/go#30831](https://github.com/golang/go/issues/30831). +`golang.org/x/lint` is a module whose git repository and module name used to be `github.com/golang/lint` before migrating to the git repo `golang.org/x/lint` and renaming its module name to `golang.org/x/lint`. The Go tool currently stumbles trying to understand the old module name at the new git repository: [golang/go#30831](https://github.com/golang/go/issues/30831). This was surfaced to `my-go-project` because `my-go-project` or one of its transitive dependencies has a route in the module graph to the old `github.com/golang/lint` module name.