drop -d flag in go get command (it's always on as of https://go.dev/doc/go1.18#go-get)
diff --git a/MinorReleases.md b/MinorReleases.md
index 267b1a6..622d1d2 100644
--- a/MinorReleases.md
+++ b/MinorReleases.md
@@ -58,7 +58,7 @@
2. In the main repository on the `release-branch.go1.x` branch, create a CL that pulls in the fix from the golang.org/x internal branch:
```
- go get -d golang.org/x/repo@internal-branch.go1.x-vendor
+ go get golang.org/x/repo@internal-branch.go1.x-vendor
go mod tidy
go mod vendor
go generate -run=bundle std # If a bundled package needs regeneration.