aboutsummaryrefslogtreecommitdiff
path: root/_content/doc/go1.26.md
diff options
context:
space:
mode:
authorAlan Donovan <adonovan@google.com>2026-02-10 13:11:51 -0500
committerJunyang Shao <shaojunyang@google.com>2026-02-10 11:03:07 -0800
commitfb40eb1c0270dd17e04eb05a1f34e0c36219331f (patch)
treec5932a8da6cdb539bfec8f0cdbb334e924dc7edd /_content/doc/go1.26.md
parentcd9f0a846a136f7b452395772638018114795f37 (diff)
downloadgo-x-website-fb40eb1c0270dd17e04eb05a1f34e0c36219331f.tar.xz
_content/doc/go1.26.md: link to inline analyzer docs
A blog post will follow. Change-Id: I9926c0a4283c04adba2f59de1b75a5d8226581fc Reviewed-on: https://go-review.googlesource.com/c/website/+/743921 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Junyang Shao <shaojunyang@google.com>
Diffstat (limited to '_content/doc/go1.26.md')
-rw-r--r--_content/doc/go1.26.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/_content/doc/go1.26.md b/_content/doc/go1.26.md
index 88322fe8..37d1a10d 100644
--- a/_content/doc/go1.26.md
+++ b/_content/doc/go1.26.md
@@ -77,7 +77,8 @@ of Go's *modernizers*. It provides a dependable, push-button way to update Go
code bases to the latest idioms and core library APIs. The initial suite of
modernizers includes dozens of fixers to make use of modern features of the Go
language and library, as well a source-level inliner that allows users to
-automate their own API migrations using `//go:fix inline` directives.
+automate their own API migrations using
+[`//go:fix inline` directives](https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/inline#hdr-Analyzer_inline).
These fixers should not change the behavior of your program, so if you encounter
any issues with a fix performed by `go fix`, please [report it](/issue/new).
@@ -88,9 +89,9 @@ can be used to suggest and apply fixes in `go fix`.
The `go fix` command's historical fixers, all of which were obsolete,
have been removed.
-An upcoming Go blog post will go into more detail on this initiative and how to
-get the most out of `go fix`.
-<!-- TODO(adonovan): link to blog post once live. -->
+Two upcoming Go blog posts will go into more detail on modernizers, the inliner,
+and how to get the most out of `go fix`.
+<!-- TODO(adonovan): link to blog posts once live. -->
<!-- go.dev/issue/74748 -->
`go mod init` now defaults to a lower `go` version in new `go.mod` files.