Skip to content

Commit 82112c0

Browse files
h9jianggopherbot
authored andcommitted
gopls/internal/settings: correct git issue for fieldalignment warning
For golang/go#76237 Change-Id: I5103ff09a701d745f26d940e9d941cb2f7fad8b8 Reviewed-on: https://go-review.googlesource.com/c/tools/+/719840 Reviewed-by: Alan Donovan <adonovan@google.com> Auto-Submit: Hongxiang Jiang <hxjiang@golang.org> Commit-Queue: Hongxiang Jiang <hxjiang@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
1 parent 1f97856 commit 82112c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gopls/internal/settings/settings.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1214,7 +1214,7 @@ func (o *Options) setOne(name string, value any) (applied []CounterPath, _ error
12141214
return nil, err
12151215
}
12161216
if o.Analyses["fieldalignment"] {
1217-
return counts, &SoftError{"the 'fieldalignment' analyzer was removed in gopls/v0.17.0; instead, hover over struct fields to see size/offset information (https://go.dev/issue/66861)"}
1217+
return counts, &SoftError{"the 'fieldalignment' analyzer was removed in gopls/v0.17.0; instead, hover over struct fields to see size/offset information (https://go.dev/issue/67762)"}
12181218
}
12191219
return counts, nil
12201220

0 commit comments

Comments
 (0)