diff --git a/stylecheck/st1000/st1000.go b/stylecheck/st1000/st1000.go index 41bc55b5c..803055684 100644 --- a/stylecheck/st1000/st1000.go +++ b/stylecheck/st1000/st1000.go @@ -21,7 +21,7 @@ var SCAnalyzer = lint.InitializeAnalyzer(&lint.Analyzer{ Title: `Incorrect or missing package comment`, Text: `Packages must have a package comment that is formatted according to the guidelines laid out in -https://github.com/golang/go/wiki/CodeReviewComments#package-comments.`, +https://go.dev/wiki/CodeReviewComments#package-comments.`, Since: "2019.1", NonDefault: true, MergeIf: lint.MergeIfAny, diff --git a/website/data/checks.json b/website/data/checks.json index 733cd21cf..e9f0770ab 100644 --- a/website/data/checks.json +++ b/website/data/checks.json @@ -1822,9 +1822,9 @@ }, "ST1000": { "Title": "Incorrect or missing package comment", - "Text": "Packages must have a package comment that is formatted according to\nthe guidelines laid out in\nhttps://github.com/golang/go/wiki/CodeReviewComments#package-comments.", + "Text": "Packages must have a package comment that is formatted according to\nthe guidelines laid out in\nhttps://go.dev/wiki/CodeReviewComments#package-comments.", "TitleMarkdown": "Incorrect or missing package comment", - "TextMarkdown": "Packages must have a package comment that is formatted according to\nthe guidelines laid out in\nhttps://github.com/golang/go/wiki/CodeReviewComments#package-comments.", + "TextMarkdown": "Packages must have a package comment that is formatted according to\nthe guidelines laid out in\nhttps://go.dev/wiki/CodeReviewComments#package-comments.", "Before": "", "After": "", "Since": "2019.1",