aboutsummaryrefslogtreecommitdiff
path: root/design/24301-versioned-go.md
diff options
context:
space:
mode:
authorShulhan <m.shulhan@gmail.com>2026-02-05 02:40:45 +0700
committerShulhan <m.shulhan@gmail.com>2026-04-09 22:18:08 +0700
commita35c1bec998f69ab8feaba5bc18c475b460473c3 (patch)
tree31c0860df456c608361d99fb1e7fae01fa650ba0 /design/24301-versioned-go.md
parent30ca2a3a36351bcfeca7cfc8b6b367016046f0e4 (diff)
downloadgo-x-proposal-a35c1bec998f69ab8feaba5bc18c475b460473c3.tar.xz
all: fix broken links and typos
Diffstat (limited to 'design/24301-versioned-go.md')
-rw-r--r--design/24301-versioned-go.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/design/24301-versioned-go.md b/design/24301-versioned-go.md
index 7b3ee49..31271c5 100644
--- a/design/24301-versioned-go.md
+++ b/design/24301-versioned-go.md
@@ -94,7 +94,7 @@ I propose to add versioning to Go using the following approach.
unless the module's documentation clearly states exceptions.
5. Record each module's path and dependency requirements in a
- [`go.mod` file](XXX) stored in the root of the module's file tree.
+ `go.mod` file stored in the root of the module's file tree.
6. To decide which module versions to use in a given build,
apply [minimal version selection](https://research.swtch.com/vgo-mvs):
@@ -108,7 +108,7 @@ I propose to add versioning to Go using the following approach.
Second, it never chooses a module version not listed in some `go.mod` file
involved in the build: new versions are not incorporated
simply because they have been published.
- The second property produces [high-fidelity builds](XXX)
+ The second property produces high-fidelity builds
and makes sure that upgrades only happen when
developers request them, never unexpectedly.